Skip to content

Commit

Permalink
feat: Support for hoisted node_modules (lerna + yarn workspaces)
Browse files Browse the repository at this point in the history
Close #2205
  • Loading branch information
develar committed Oct 18, 2017
1 parent 88a70a3 commit b0fa409
Show file tree
Hide file tree
Showing 99 changed files with 5,609 additions and 1,812 deletions.
6 changes: 0 additions & 6 deletions .babelrc

This file was deleted.

22 changes: 15 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test-linux": "docker run --rm -ti -v ~/Library/Caches/electron:/root/.cache/electron -v ${PWD}:/project -v ${PWD##*/}-node-modules:/project/node_modules -v ~/.electron:/root/.electron electronuserland/builder:wine /bin/bash -c \"yarn && TEST_FILES=linux node ./test/out/helpers/runTests.js\"",
"whitespace": "whitespace 'src/**/*.ts'",
"docker-images": "docker/build.sh",
"update-deps": "npm-check-updates -a -x gitbook-plugin-github && node ./scripts/update-deps.js",
"update-deps": "npm-check-updates -a -x gitbook-plugin-github,chalk && node ./scripts/update-deps.js",
"set-versions": "node test/out/helpers/setVersions.js",
"release": "yarn set-versions && yarn compile && sh ./__publish.sh && conventional-changelog -p angular -i CHANGELOG.md -s",
"schema": "typescript-json-schema packages/electron-builder/tsconfig.json Configuration --out packages/electron-builder/scheme.json --noExtraProps --useTypeOfKeyword --strictNullChecks --titles --required",
Expand All @@ -31,9 +31,9 @@
"7zip-bin": "^2.2.7",
"archiver": "^2.1.0",
"async-exit-hook": "^2.0.1",
"aws-sdk": "^2.134.0",
"bluebird-lst": "^1.0.4",
"chalk": "^2.1.0",
"aws-sdk": "^2.135.0",
"bluebird-lst": "^1.0.5",
"chalk": "2.1.0",
"chromium-pickle-js": "^0.2.0",
"cuint": "^0.2.2",
"debug": "^3.1.0",
Expand Down Expand Up @@ -78,7 +78,7 @@
"@types/electron-is-dev": "^0.3.0",
"@types/iconv-lite": "^0.0.1",
"@types/ini": "^1.3.29",
"@types/jest": "^21.1.3",
"@types/jest": "^21.1.4",
"@types/js-yaml": "^3.9.1",
"@types/lodash.isequal": "^4.5.2",
"@types/node-emoji": "^1.4.0",
Expand All @@ -87,7 +87,7 @@
"@types/semver": "^5.4.0",
"@types/source-map-support": "^0.4.0",
"@types/stat-mode": "^0.2.0",
"babel-preset-ts-node4-bluebird": "^0.1.1",
"babel-preset-ts-node6-bluebird": "^1.0.1",
"convert-source-map": "^1.5.0",
"decompress-zip": "^0.3.0",
"depcheck": "^0.6.8",
Expand All @@ -106,7 +106,7 @@
"jsdoc-to-markdown": "^3.0.0",
"path-sort": "^0.1.0",
"serve-static": "^1.13.1",
"ts-babel": "^4.1.6",
"ts-babel": "^4.1.7",
"ts-jsdoc": "^2.0.6",
"tslint": "^5.7.0",
"typescript": "^2.6.0-rc",
Expand Down Expand Up @@ -134,5 +134,13 @@
},
"yargs": {
"camel-case-expansion": false
},
"babel": {
"presets": [
"babel-preset-ts-node6-bluebird"
],
"plugins": [
"./scripts/babel-plugin-version-transform.js"
]
}
}
Loading

0 comments on commit b0fa409

Please sign in to comment.