-
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support
.pnp.js
when loading configurations. (#1307)
* feat: support `.pnp.js` when loading configurations. * dev: be able to specify the list of .pnp files to search for * dev: Add PnPSettings definitions * dev: enable support for PnP
- Loading branch information
Showing
60 changed files
with
2,754 additions
and
94 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
**/[Tt]emp | ||
**/[Ss]amples | ||
integration-tests/repositories | ||
test-packages/yarn2 | ||
coverage |
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- run: npm ci | ||
|
||
- run: npm run build | ||
- run: npm run coverage | ||
|
||
- name: Upload coverage Coveralls | ||
|
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 |
---|---|---|
|
@@ -10,4 +10,5 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- run: npm run prepare-cspell-action | ||
- uses: streetsidesoftware/[email protected] |
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 |
---|---|---|
|
@@ -10,4 +10,5 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- run: npm run prepare-cspell-action | ||
- run: npx cspell@latest "**/*" |
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 |
---|---|---|
|
@@ -12,4 +12,5 @@ jobs: | |
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
- run: npm ci | ||
- run: npm run build | ||
- run: npm run lint-ci |
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 |
---|---|---|
|
@@ -11,3 +11,4 @@ lerna.json | |
tsconfig*.json | ||
packages/*/dist/ | ||
**/package-lock.json | ||
coverage |
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,38 +1,41 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"name": "cspell-monorepo", | ||
"path": "." | ||
}, | ||
{ | ||
"path": "./integration-tests" | ||
}, | ||
{ | ||
"path": "./packages/cspell-glob" | ||
}, | ||
{ | ||
"path": "./packages/cspell-lib" | ||
}, | ||
{ | ||
"path": "./packages/cspell-tools" | ||
}, | ||
{ | ||
"path": "./packages/cspell-trie-lib" | ||
}, | ||
{ | ||
"path": "./packages/cspell-trie" | ||
}, | ||
{ | ||
"path": "./packages/cspell-trie2-lib" | ||
}, | ||
{ | ||
"path": "./packages/cspell" | ||
} | ||
], | ||
"settings": { | ||
"typescript.tsdk": "cspell-monorepo/node_modules/typescript/lib", | ||
"cSpell.customWorkspaceDictionaries": [ | ||
"workspace" | ||
] | ||
} | ||
"folders": [ | ||
{ | ||
"name": "cspell-monorepo", | ||
"path": "." | ||
}, | ||
{ | ||
"path": "./integration-tests" | ||
}, | ||
{ | ||
"path": "./packages/cspell-glob" | ||
}, | ||
{ | ||
"path": "./packages/cspell-lib" | ||
}, | ||
{ | ||
"path": "./packages/cspell-tools" | ||
}, | ||
{ | ||
"path": "./packages/cspell-trie-lib" | ||
}, | ||
{ | ||
"path": "./packages/cspell-trie" | ||
}, | ||
{ | ||
"path": "./packages/cspell-trie2-lib" | ||
}, | ||
{ | ||
"path": "./packages/cspell-types" | ||
}, | ||
{ | ||
"path": "./packages/cspell" | ||
} | ||
], | ||
"settings": { | ||
"typescript.tsdk": "cspell-monorepo/node_modules/typescript/lib", | ||
"cSpell.customWorkspaceDictionaries": [ | ||
"workspace" | ||
] | ||
} | ||
} |
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
Oops, something went wrong.