Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update galactus #1441

Merged
merged 2 commits into from
Nov 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ steps-ci: &steps-ci
- *step-before-install
- run: |
case "$(uname -s)" in
"Darwin"|"Linux") npm install --engine-strict --no-lockfile ;;
*) npm install --no-lockfile ;;
"Darwin"|"Linux") yarn install --frozen-lockfile ;;
*) yarn install --frozen-lockfile ;;
esac
- *step-restore-electron-cache
- run: test/ci/_before_script.js
- *step-save-electron-cache
- run: npm run lint
- run: npm run tsd
- run: npm run coverage
- run: npm run codecov
- run: yarn run lint
- run: yarn run tsd
- run: yarn run coverage
- run: yarn run codecov

version: 2.1
orbs:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
*.pem
node_modules
package-lock.json
yarn.lock
test/fixtures/basic/main-link.js
!test/fixtures/prune-is-module/node_modules
!test/fixtures/ignore-package-lock/*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"extract-zip": "^2.0.0",
"filenamify": "^4.1.0",
"fs-extra": "^10.1.0",
"galactus": "^0.2.1",
"galactus": "^1.0.0",
"get-package-info": "^1.0.0",
"junk": "^3.1.0",
"parse-author": "^2.0.0",
Expand Down
Loading