-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
E Fixes publishConfig to publish package files with pnpm
+ Add publishConfig to non private packages + Update pipeline to use pnpm publish + Remove npm publish task + Remove unit test config from e2e jest.config.js + Update vscode settings to improve pnpm experience + Update release notes
- Loading branch information
Showing
11 changed files
with
81 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,17 @@ | ||
{ | ||
"cSpell.words": ["addon", "addons", "barfoo", "json", "websmith"], | ||
"jest.jestCommandLine": "node_modules/.bin/jest", | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"eslint.experimental.useFlatConfig": true, | ||
"editor.defaultFormatter": "dbaeumer.vscode-eslint", | ||
"eslint.experimental.useFlatConfig": true, | ||
"eslint.format.enable": true, | ||
"eslint.lintTask.enable": true | ||
"eslint.lintTask.enable": true, | ||
// For those using file-nesting, nest the new files. E.g.: | ||
"explorer.fileNesting.patterns": { | ||
"package.json": "pnpm-workspace.yaml, pnpm-lock.yaml" | ||
}, | ||
"jest.jestCommandLine": "node_modules/.bin/jest", | ||
"npm.packageManager": "pnpm", | ||
"search.exclude": { | ||
"pnpm-lock.yaml": true | ||
}, | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters