Skip to content

Commit

Permalink
Fix prune and playwright
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikescops committed Aug 31, 2023
1 parent 393bb64 commit 368eb6e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/manual-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- run: pnpm i
- run: pnpm build
# remove dev dependencies before packaging
- run: pnpm prune --prod
- run: pnpm prune --prod --config.ignore-scripts=true
# package final binaries
- run: |
pnpx pkg . -t node16-${{ matrix.settings.target }} -o bundle/dcli-${{ matrix.settings.target }}${{ matrix.settings.extension }} -C GZip "--public" "--public-packages" "tslib,thirty-two" "--no-bytecode"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- run: pnpm i
- run: pnpm build
# remove dev dependencies before packaging
- run: pnpm prune --prod
- run: pnpm prune --prod --config.ignore-scripts=true
# package final binaries
- run: |
pnpx pkg . -t node16-${{ matrix.settings.target }} -o bundle/dcli-${{ matrix.settings.target }}${{ matrix.settings.extension }} -C GZip "--public" "--public-packages" "tslib,thirty-two" "--no-bytecode"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"inquirer-search-list": "^1.2.6",
"jsonpath-plus": "^7.2.0",
"otplib": "^12.0.1",
"playwright": "^1.37.0",
"playwright-core": "^1.37.0",
"winston": "^3.10.0",
"xml-js": "^1.6.11",
"zlib": "^1.0.5"
Expand Down
11 changes: 1 addition & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/modules/auth/sso/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { chromium } from 'playwright';
import { chromium } from 'playwright-core';
import { DASHLANE_APP_REGEX, extractSsoInfoFromUrl } from './utils';
import { performSSOVerification } from '../../../endpoints/performSSOVerification';

Expand Down

0 comments on commit 368eb6e

Please sign in to comment.