Skip to content

Commit

Permalink
update pkg.json
Browse files Browse the repository at this point in the history
  • Loading branch information
shanewilson committed May 26, 2017
1 parent 8780ce5 commit 47b22e2
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 75 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
"knit": "knit",
"knit:clean": "rm -rf dist",
"knit:copy": "knit copy --ignore-path=@oncojs/**/{__mocks__,__tests__,*.js}",
"knit:stitch": "knit stitch --concurrently --scope unpublished",
"knit:build:es6": "NODE_ENV=production knit exec --concurrently --scope unpublished -- babel . -d ROOT_DIR/dist/KNIT_MODULE_NAME/es6 --ignore tests,mocks",
"knit:build:cjs": "NODE_ENV=production knit exec --concurrently --scope unpublished -- babel --plugins transform-es2015-modules-commonjs . -d ROOT_DIR/dist/KNIT_MODULE_NAME --ignore tests,mocks",
"knit:build:umd": "NODE_ENV=production knit exec --concurrently --scope unpublished -- rollup -c ROOT_DIR/rollup.config.js -i ROOT_DIR/dist/KNIT_MODULE_NAME/es6/index.js -o ROOT_DIR/dist/KNIT_MODULE_NAME/umd/index.min.js -n KNIT_MODULE_NAME",
"knit:stitch": "knit stitch --parallel --scope public",
"knit:build:es6": "NODE_ENV=production knit exec --parallel --scope public --label 'Building ES6' -- babel . -d ROOT_DIR/dist/KNIT_MODULE_NAME/es6 --ignore tests,mocks",
"knit:build:cjs": "NODE_ENV=production knit exec --parallel --scope public --label 'Building CJS' -- babel --plugins transform-es2015-modules-commonjs . -d ROOT_DIR/dist/KNIT_MODULE_NAME --ignore tests,mocks",
"knit:build:umd": "NODE_ENV=production knit exec --parallel --scope public --label 'Building UMD' -- rollup -c ROOT_DIR/rollup.config.js -i ROOT_DIR/dist/KNIT_MODULE_NAME/es6/index.js -o ROOT_DIR/dist/KNIT_MODULE_NAME/umd/index.min.js -n KNIT_MODULE_NAME",
"knit:build": "run-s knit:clean knit:copy knit:build:es6 knit:build:cjs knit:build:umd knit:stitch",
"preknit:publish": "npm run knit:build",
"knit:publish": "knit exec --scope unpublished --working-dir dist -- npm publish --access public",
"knit:publish": "knit exec --label 'Publishing' --scope unpublished --working-dir dist -- npm publish --access public",
"preversion": "knit validate",
"version": "knit exec --scope modified -- npm version --no-git-tag-version $npm_package_version && git add .",
"version": "knit exec --label 'Versioning' --scope modified -- npm version --no-git-tag-version $npm_package_version && git add .",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"release": "npm version",
Expand All @@ -43,14 +43,14 @@
"react": "15.5.4"
},
"devDependencies": {
"@knit/knit": "0.5.0",
"@knit/knit": "^0.6.0",
"babel-cli": "6.24.1",
"eslint-config-prettier": "2.1.1",
"eslint-plugin-prettier": "2.1.1",
"flow-bin": "0.46.0",
"flow-bin": "^0.47.0",
"gh-pages": "1.0.0",
"husky": "0.13.3",
"lint-staged": "3.4.2",
"lint-staged": "^3.5.0",
"npm-run-all": "4.0.2",
"prettier": "1.3.1",
"react-dom": "15.5.4",
Expand Down
139 changes: 73 additions & 66 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,68 +2,68 @@
# yarn lockfile v1


"@knit/common-tasks@0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@knit/common-tasks/-/common-tasks-0.5.0.tgz#96e801d35c722617a1da4fde2b096b66cf705175"
dependencies:
"@knit/find-dependencies" "0.5.0"
"@knit/find-modified-packages" "0.5.0"
"@knit/find-packages" "0.5.0"
"@knit/find-unpublished-packages" "0.5.0"
"@knit/knit-core" "0.5.0"
"@knit/needle" "0.5.0"
"@knit/read-pkg" "0.5.0"
"@knit/common-tasks@0.6.0":
version "0.6.0"
resolved "https://registry.yarnpkg.com/@knit/common-tasks/-/common-tasks-0.6.0.tgz#4c05824297589a0f90e6fbdf15e5ee54b06a62ef"
dependencies:
"@knit/find-dependencies" "0.6.0"
"@knit/find-modified-packages" "0.6.0"
"@knit/find-packages" "0.6.0"
"@knit/find-unpublished-packages" "0.6.0"
"@knit/knit-core" "0.6.0"
"@knit/needle" "0.6.0"
"@knit/read-pkg" "0.6.0"
execa "^0.6.0"
fs-extra "^3.0.1"
listr "^0.12.0"
multimatch "^2.1.0"
semver "5.3.0"

"@knit/depcheck@0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@knit/depcheck/-/depcheck-0.5.0.tgz#a1e2669512ec200ba76b745051ca7f16672d5837"
"@knit/depcheck@0.6.0":
version "0.6.0"
resolved "https://registry.yarnpkg.com/@knit/depcheck/-/depcheck-0.6.0.tgz#e5e816a8a8e618b2cae835bc28750057656c28d2"
dependencies:
"@knit/needle" "0.5.0"
"@knit/webpack-config-socks" "0.5.0"
"@knit/needle" "0.6.0"
"@knit/webpack-config-socks" "0.6.0"
babylon "^6.16.1"
depcheck "^0.6.7"
lodash "^4.17.4"
pify "2.3.0"

"@knit/find-dependencies@0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@knit/find-dependencies/-/find-dependencies-0.5.0.tgz#0932afe8613ad68eedd363d41603d080c711d8d8"
"@knit/find-dependencies@0.6.0":
version "0.6.0"
resolved "https://registry.yarnpkg.com/@knit/find-dependencies/-/find-dependencies-0.6.0.tgz#dbce85e5a3b9da0da661c0295232d0d1d524d1cb"
dependencies:
"@knit/depcheck" "0.5.0"
"@knit/needle" "0.5.0"
"@knit/depcheck" "0.6.0"
"@knit/needle" "0.6.0"
"@knit/path-join" "0.5.0"
"@knit/read-pkg" "0.5.0"
"@knit/read-pkg" "0.6.0"

"@knit/find-modified-packages@0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@knit/find-modified-packages/-/find-modified-packages-0.5.0.tgz#34abc969c692a0cdc5dd6178bb3864f32ebc0c40"
"@knit/find-modified-packages@0.6.0":
version "0.6.0"
resolved "https://registry.yarnpkg.com/@knit/find-modified-packages/-/find-modified-packages-0.6.0.tgz#320293f6a7e7076453003658fba5ac4a04b3ca57"
dependencies:
"@knit/find-dependencies" "0.5.0"
"@knit/find-dependencies" "0.6.0"
"@knit/is-scoped" "0.5.0"
"@knit/knit-core" "0.5.0"
"@knit/knit-core" "0.6.0"
execa "^0.6.0"

"@knit/find-packages@0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@knit/find-packages/-/find-packages-0.5.0.tgz#fc5c382fb4279654ba83359fb989786892e8e9b3"
"@knit/find-packages@0.6.0":
version "0.6.0"
resolved "https://registry.yarnpkg.com/@knit/find-packages/-/find-packages-0.6.0.tgz#b723843ac5846471fbfdca0239ebdfbe79a806fa"
dependencies:
"@knit/get-package-from-dir" "0.5.0"
"@knit/is-scoped" "0.5.0"
"@knit/path-join" "0.5.0"
"@knit/read-pkg" "0.5.0"
"@knit/read-pkg" "0.6.0"
fs-extra "^3.0.1"

"@knit/find-unpublished-packages@0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@knit/find-unpublished-packages/-/find-unpublished-packages-0.5.0.tgz#2ceb148fad5378bcaaba92990f2cdf0aa4fae281"
"@knit/find-unpublished-packages@0.6.0":
version "0.6.0"
resolved "https://registry.yarnpkg.com/@knit/find-unpublished-packages/-/find-unpublished-packages-0.6.0.tgz#01d6d9e543a534a4216895c25dcf6dfd4629fd11"
dependencies:
"@knit/knit-core" "0.5.0"
"@knit/read-pkg" "0.5.0"
"@knit/knit-core" "0.6.0"
"@knit/read-pkg" "0.6.0"
"@knit/yarn-utils" "0.5.0"

"@knit/[email protected]":
Expand All @@ -74,25 +74,25 @@
version "0.5.0"
resolved "https://registry.yarnpkg.com/@knit/is-scoped/-/is-scoped-0.5.0.tgz#b55ce2186e4e937b3f1cc84e37cfa2b34f5f6d7a"

"@knit/knit-core@0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@knit/knit-core/-/knit-core-0.5.0.tgz#dd1f6fd1a7d12419f0cead6ced55d749cb3b98d8"
"@knit/knit-core@0.6.0":
version "0.6.0"
resolved "https://registry.yarnpkg.com/@knit/knit-core/-/knit-core-0.6.0.tgz#4622dfe959a1200789c0c1da9824e8b25ba43c83"
dependencies:
"@knit/needle" "0.5.0"
"@knit/read-pkg" "0.5.0"
"@knit/needle" "0.6.0"
"@knit/read-pkg" "0.6.0"

"@knit/knit@0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@knit/knit/-/knit-0.5.0.tgz#08a1f005c3074fce9b8a89f84292fc4624c9c55a"
"@knit/knit@^0.6.0":
version "0.6.0"
resolved "https://registry.yarnpkg.com/@knit/knit/-/knit-0.6.0.tgz#e9d0ca566c8631c4b16699df5c40d7a2295fee5d"
dependencies:
"@knit/common-tasks" "0.5.0"
"@knit/find-dependencies" "0.5.0"
"@knit/knit-core" "0.5.0"
"@knit/common-tasks" "0.6.0"
"@knit/find-dependencies" "0.6.0"
"@knit/knit-core" "0.6.0"
"@knit/logger" "0.5.0"
"@knit/needle" "0.5.0"
"@knit/needle" "0.6.0"
"@knit/nice-errors" "0.5.0"
"@knit/path-join" "0.5.0"
"@knit/read-pkg" "0.5.0"
"@knit/read-pkg" "0.6.0"
"@knit/yarn-utils" "0.5.0"
chalk "1.1.3"
execa "^0.6.0"
Expand All @@ -111,10 +111,11 @@
listr-update-renderer "^0.4.0"
listr-verbose-renderer "^0.4.0"

"@knit/needle@0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@knit/needle/-/needle-0.5.0.tgz#aa8aff52662527c17f8856b823a4f2c0e9d8fcbc"
"@knit/needle@0.6.0":
version "0.6.0"
resolved "https://registry.yarnpkg.com/@knit/needle/-/needle-0.6.0.tgz#202e7c1ae1f6cff707fba34061bf1189603faa0b"
dependencies:
dotenv "4.0.0"
read-pkg-up "2.0.0"

"@knit/[email protected]":
Expand All @@ -129,19 +130,19 @@
version "0.5.0"
resolved "https://registry.yarnpkg.com/@knit/path-join/-/path-join-0.5.0.tgz#4a5e50773572814bf536be0dbb4a7e8436f77e9b"

"@knit/read-pkg@0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@knit/read-pkg/-/read-pkg-0.5.0.tgz#2c221adcf27300ec80e2944b5f790691c796d7d6"
"@knit/read-pkg@0.6.0":
version "0.6.0"
resolved "https://registry.yarnpkg.com/@knit/read-pkg/-/read-pkg-0.6.0.tgz#f9b57c3341796fe466f0829bc75f26ecf5976288"
dependencies:
"@knit/needle" "0.5.0"
"@knit/needle" "0.6.0"
"@knit/path-join" "0.5.0"
read-pkg "2.0.0"

"@knit/webpack-config-socks@0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@knit/webpack-config-socks/-/webpack-config-socks-0.5.0.tgz#a47002579264d356b5f9fabc3b61c430d0fe9601"
"@knit/webpack-config-socks@0.6.0":
version "0.6.0"
resolved "https://registry.yarnpkg.com/@knit/webpack-config-socks/-/webpack-config-socks-0.6.0.tgz#9aa3e1f162ab6e255d433b72b3c8311fbf786ba2"
dependencies:
"@knit/needle" "0.5.0"
"@knit/needle" "0.6.0"
babel-loader "^6.3.2"
case-sensitive-paths-webpack-plugin "1.1.4"
compression-webpack-plugin "0.3.2"
Expand Down Expand Up @@ -3112,9 +3113,9 @@ flatten@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782"

flow-bin@0.46.0:
version "0.46.0"
resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.46.0.tgz#06ad7fe19dddb1042264438064a2a32fee12b872"
flow-bin@^0.47.0:
version "0.47.0"
resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.47.0.tgz#a2a08ab3e0d1f1cb57d17e27b30b118b62fda367"

[email protected]:
version "0.45.0"
Expand Down Expand Up @@ -4404,16 +4405,18 @@ levn@^0.3.0, levn@~0.3.0:
prelude-ls "~1.1.2"
type-check "~0.3.2"

lint-staged@3.4.2:
version "3.4.2"
resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-3.4.2.tgz#9cd1c0e4e477326c2696802a8377c22f92d65e79"
lint-staged@^3.5.0:
version "3.5.0"
resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-3.5.0.tgz#e8a8900b863e85051a3769e0a11ccb4a7dfa9f83"
dependencies:
app-root-path "^2.0.0"
cosmiconfig "^1.1.0"
execa "^0.6.0"
listr "^0.12.0"
lodash.chunk "^4.2.0"
minimatch "^3.0.0"
npm-which "^3.0.1"
p-map "^1.1.1"
staged-git-files "0.0.4"

listr-silent-renderer@^1.1.1:
Expand Down Expand Up @@ -4538,6 +4541,10 @@ lodash.camelcase@^4.3.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"

lodash.chunk@^4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/lodash.chunk/-/lodash.chunk-4.2.0.tgz#66e5ce1f76ed27b4303d8c6512e8d1216e8106bc"

lodash.cond@^4.3.0:
version "4.5.2"
resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5"
Expand Down

0 comments on commit 47b22e2

Please sign in to comment.