Skip to content

Commit

Permalink
build: add missing script aliases in some pkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Nov 13, 2020
1 parent 607648a commit 77c6567
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
3 changes: 2 additions & 1 deletion packages/colored-noise/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@
"build:release": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module all",
"build:es6": "tsc --declaration",
"build:test": "rimraf build && tsc -p test/tsconfig.json",
"build:check": "tsc --isolatedModules --noEmit",
"test": "mocha test",
"cover": "nyc mocha test && nyc report --reporter=lcov",
"clean": "rimraf *.js *.d.ts *.map .nyc_output build coverage doc lib",
"doc:readme": "ts-node -P ../../tools/tsconfig.json ../../tools/src/readme.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose",
"doc": "node_modules/.bin/typedoc --mode modules --out doc src",
"doc": "node_modules/.bin/typedoc --mode modules --out doc --theme ../../tools/doc/typedoc-theme src",
"pub": "yarn build:release && yarn publish --access public"
},
"devDependencies": {
Expand Down
4 changes: 3 additions & 1 deletion packages/date/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@
"build:release": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module all",
"build:es6": "tsc --declaration",
"build:test": "rimraf build && tsc -p test/tsconfig.json",
"build:check": "tsc --isolatedModules --noEmit",
"test": "mocha test",
"cover": "nyc mocha test && nyc report --reporter=lcov",
"clean": "rimraf *.js *.d.ts *.map .nyc_output build coverage doc lib",
"doc:readme": "ts-node -P ../../tools/tsconfig.json ../../tools/src/readme.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose",
"doc": "node_modules/.bin/typedoc --mode modules --out doc src",
"doc": "node_modules/.bin/typedoc --mode modules --out doc --theme ../../tools/doc/typedoc-theme src",
"pub": "yarn build:release && yarn publish --access public"
},
"devDependencies": {
Expand All @@ -56,6 +57,7 @@
"lib"
],
"keywords": [
"datastructure",
"date",
"format",
"interval",
Expand Down
4 changes: 3 additions & 1 deletion packages/dual-algebra/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@
"build:release": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module all",
"build:es6": "tsc --declaration",
"build:test": "rimraf build && tsc -p test/tsconfig.json",
"build:check": "tsc --isolatedModules --noEmit",
"test": "mocha test",
"cover": "nyc mocha test && nyc report --reporter=lcov",
"clean": "rimraf *.js *.d.ts *.map .nyc_output build coverage doc lib",
"doc:readme": "ts-node -P ../../tools/tsconfig.json ../../tools/src/readme.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose",
"doc": "node_modules/.bin/typedoc --mode modules --out doc src",
"doc": "node_modules/.bin/typedoc --mode modules --out doc --theme ../../tools/doc/typedoc-theme src",
"pub": "yarn build:release && yarn publish --access public"
},
"devDependencies": {
Expand All @@ -57,6 +58,7 @@
],
"keywords": [
"algebra",
"datastructure",
"derivative",
"descend",
"differentiation",
Expand Down
3 changes: 2 additions & 1 deletion packages/egf/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@
"build:release": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module all",
"build:es6": "tsc --declaration",
"build:test": "rimraf build && tsc -p test/tsconfig.json",
"build:check": "tsc --isolatedModules --noEmit",
"test": "mocha test",
"cover": "nyc mocha test && nyc report --reporter=lcov",
"clean": "rimraf *.js *.d.ts *.map .nyc_output build coverage doc lib",
"doc:readme": "ts-node -P ../../tools/tsconfig.json ../../tools/src/readme.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose",
"doc": "node_modules/.bin/typedoc --mode modules --out doc src",
"doc": "node_modules/.bin/typedoc --mode modules --out doc --theme ../../tools/doc/typedoc-theme src",
"pub": "yarn build:release && yarn publish --access public",
"pub:wip": "yarn publish --access public --no-git-tag-version"
},
Expand Down
3 changes: 2 additions & 1 deletion packages/viz/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@
"build:release": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module all",
"build:es6": "tsc --declaration",
"build:test": "rimraf build && tsc -p test/tsconfig.json",
"build:check": "tsc --isolatedModules --noEmit",
"test": "mocha test",
"cover": "nyc mocha test && nyc report --reporter=lcov",
"clean": "rimraf *.js *.d.ts *.map .nyc_output build coverage doc lib plot",
"doc:readme": "ts-node -P ../../tools/tsconfig.json ../../tools/src/readme.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose",
"doc": "node_modules/.bin/typedoc --mode modules --out doc src",
"doc": "node_modules/.bin/typedoc --mode modules --out doc --theme ../../tools/doc/typedoc-theme src",
"pub": "yarn build:release && yarn publish --access public",
"tool:candles": "ts-node -P tools/tsconfig.json tools/candles.ts",
"tool:line": "ts-node -P tools/tsconfig.json tools/line.ts",
Expand Down

0 comments on commit 77c6567

Please sign in to comment.