Skip to content

Commit

Permalink
Adds --yarn flag to vsce
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Jul 19, 2019
1 parent bf48a26 commit 6a88ac2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ package-lock.json
tsconfig.json
webpack.config.js
webviews.tsconfig.json
yarn.lock
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5325,11 +5325,11 @@
"bundle": "webpack --env.production",
"clean": "git clean -Xdf -e !node_modules -e !node_modules/**/*",
"lint": "eslint src/**/*.ts --fix",
"pack": "vsce package",
"pack": "vsce package --yarn",
"pretty": "prettier --config .prettierrc --loglevel warn --write \"./**/*.{ts,md,json}\" && yarn run lint",
"pub": "vsce publish",
"pub": "vsce publish --yarn",
"rebuild": "yarn run reset && yarn run build",
"reset": "yarn run clean && yarn install --no-save",
"reset": "yarn run clean && yarn --frozen-lockfile",
"watch": "webpack --watch --env.development --info-verbosity verbose",
"webviews:optimize": "webpack --config-name webviews --env.optimizeImages",
"webviews:watch": "webpack --watch --config-name webviews --env.development --info-verbosity verbose",
Expand Down

0 comments on commit 6a88ac2

Please sign in to comment.