Skip to content

Commit

Permalink
feat!: simplify sources (#1131)
Browse files Browse the repository at this point in the history
  • Loading branch information
blacha authored Jul 20, 2023
1 parent 3e3d13b commit cd36b53
Show file tree
Hide file tree
Showing 72 changed files with 3,572 additions and 3,002 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
...require('@linzjs/style/.eslintrc.js'),
};
...require('@linzjs/style/.eslintrc.cjs'),
};
3 changes: 1 addition & 2 deletions .prettierrc.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
module.exports = {
...require('@linzjs/style/.prettierrc.js'),
tabWidth: 4
...require('@linzjs/style/.prettierrc.cjs')
};
8 changes: 4 additions & 4 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"npmClient": "yarn",
"version": "independent",
"useWorkspaces": true,
"packages": ["packages/*"]
"npmClient": "yarn",
"version": "independent",
"useWorkspaces": true,
"packages": ["packages/*"]
}
66 changes: 33 additions & 33 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"name": "@cogeotiff/base",
"version": "0.1.0",
"scripts": {
"clean": "tsc -b --clean && rimraf 'packages/*/build'",
"build": "tsc -b --pretty",
"build-watch": "tsc -b --pretty --watch",
"version": "eslint lerna.json --fix",
"lint": "eslint . --quiet --fix --ignore-path .gitignore",
"test": "node --test"
},
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"private": true,
"keywords": [],
"author": "Blayne Chard",
"license": "ISC",
"description": "",
"devDependencies": {
"@linzjs/style": "^3.13.0",
"@types/node": "^20.0.0",
"lerna": "^6.4.1",
"rimraf": "^4.1.2"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@types/**"
]
}
"name": "@cogeotiff/base",
"version": "0.1.0",
"scripts": {
"clean": "tsc -b --clean && rimraf 'packages/*/build'",
"build": "tsc -b --pretty",
"build-watch": "tsc -b --pretty --watch",
"version": "eslint lerna.json --fix",
"lint": "eslint . --quiet --fix --ignore-path .gitignore",
"test": "node --test"
},
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"private": true,
"keywords": [],
"author": "Blayne Chard",
"license": "ISC",
"description": "",
"devDependencies": {
"@linzjs/style": "^4.0.0",
"@types/node": "^20.0.0",
"lerna": "^6.4.1",
"rimraf": "^4.1.2"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@types/**"
]
}
}
3 changes: 1 addition & 2 deletions packages/cli/bin/cogeotiff.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
#!/usr/bin/env node
import 'source-map-support/register.js';
import '../build/index.js';
import '../build/bin.js';
73 changes: 37 additions & 36 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,39 @@
{
"name": "@cogeotiff/cli",
"version": "7.2.1",
"repository": {
"type": "git",
"url": "https://github.com/blacha/cogeotiff.git",
"directory": "packages/cli"
},
"author": "Blayne Chard",
"license": "MIT",
"bin": {
"cogeotiff": "bin/cogeotiff.js"
},
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {},
"dependencies": {
"@chunkd/core": "^10.0.0",
"@chunkd/fs": "^10.0.0",
"@cogeotiff/core": "^7.2.1",
"@rushstack/ts-command-line": "^4.3.14",
"ansi-colors": "^4.1.1",
"aws-sdk": "^2.781.0",
"p-limit": "^4.0.0",
"pino": "^8.0.0",
"pretty-json-log": "^1.0.0",
"source-map-support": "^0.5.12"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/pino": "^7.0.5"
},
"publishConfig": {
"access": "public"
}
"name": "@cogeotiff/cli",
"version": "7.2.1",
"repository": {
"type": "git",
"url": "https://github.com/blacha/cogeotiff.git",
"directory": "packages/cli"
},
"author": "Blayne Chard",
"license": "MIT",
"bin": {
"cogeotiff": "bin/cogeotiff.js"
},
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {},
"dependencies": {
"@chunkd/source": "^11.0.0",
"@chunkd/middleware": "^11.0.0",
"@chunkd/fs": "^11.0.0",
"@chunkd/fs-aws": "^11.0.0",
"@cogeotiff/core": "^7.2.1",
"@linzjs/tracing": "^1.1.0",
"ansi-colors": "^4.1.1",
"cmd-ts": "^0.12.1",
"p-limit": "^4.0.0",
"pino": "^8.0.0",
"pretty-json-log": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/pino": "^7.0.5"
},
"publishConfig": {
"access": "public"
}
}
Loading

0 comments on commit cd36b53

Please sign in to comment.