Skip to content

Commit 6aff693

Browse files
committed
Revert "add install-package-deps to postinstall"
This reverts commit a63742f.
1 parent 825b91d commit 6aff693

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
- name: Install APM dependencies
2727
run: |
2828
apm install
29+
- name: Atom Package dependencies
30+
run: node ./script/install-package-deps.js
2931
- name: Run tests 👩🏾‍💻
3032
run: npm run test
3133

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121
"build": "npm run clean && cross-env NODE_ENV=production cross-env BABEL_ENV=production rollup -c ",
2222
"build-commit": "build-commit -o dist",
2323
"bump": "ncu -u -x coffeescript",
24-
"prepare": "npm run build",
25-
"postinstall": "node ./script/install-package-deps.js"
24+
"prepare": "npm run build"
2625
},
2726
"atomTestRunner": "./spec/runner",
2827
"activationHooks": [

script/install-package-deps.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ const pkg = require("../package.json");
44
if (pkg["package-deps"]) {
55
const deps = Array.from(pkg["package-deps"]);
66
for (const dep of deps) {
7-
execSync(`apm install ${dep}`, {stdio: "inherit"});
7+
execSync(`apm install ${dep}`);
88
}
99
}

0 commit comments

Comments
 (0)