Skip to content

Commit

Permalink
fix(deps): ensure to bundle the static js executable with dist
Browse files Browse the repository at this point in the history
  • Loading branch information
uladkasach committed Feb 5, 2023
1 parent dfe8f44 commit 8c5ad03
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,14 @@
},
"scripts": {
"generate:cli-readme": "npm run build && oclif-dev readme",
"build:ts": "tsc -p ./tsconfig.build.json",
"build:static-assets": "copyfiles -u 1 src/logic/contents/*.js dist/",
"commit:with-cli": "npx cz",
"fix:format:prettier": "prettier --write '**/*.ts' --config ./prettier.config.js",
"fix:format": "npm run fix:format:prettier && npm run fix:format:terraform",
"fix:lint": "eslint -c ./.eslintrc.js src/**/*.ts --fix",
"build:clean": "rm dist/ -rf",
"build:compile": "tsc -p ./tsconfig.build.json",
"build": "npm run build:clean && npm run build:compile",
"build": "npm run build:clean && npm run build:compile && npm run build:static-assets",
"test:commits": "LAST_TAG=$(git describe --tags --abbrev=0 @^ 2> /dev/null || git rev-list --max-parents=0 HEAD) && npx commitlint --from $LAST_TAG --to HEAD --verbose",
"test:types": "tsc -p ./tsconfig.build.json --noEmit",
"test:format:prettier": "prettier --parser typescript --check 'src/**/*.ts' --config ./prettier.config.js",
Expand Down

0 comments on commit 8c5ad03

Please sign in to comment.