-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1161 from xeroxinteractive/AL-pnpm-vulnerability
Move to pnpm and fix vulnerabilities
- Loading branch information
Showing
34 changed files
with
9,781 additions
and
11,575 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
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 +1,2 @@ | ||
save-exact=true | ||
save-exact=true | ||
auto-install-peers=true |
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 +1 @@ | ||
16 | ||
18 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
const labels = [ | ||
{ | ||
name: 'change: major', | ||
changelogTitle: 'Breaking Change', | ||
description: 'A major breaking change', | ||
releaseType: 'major', | ||
}, | ||
{ | ||
name: 'change: feature', | ||
changelogTitle: 'Feature', | ||
description: 'Adds a new feature or improves on an existing one', | ||
releaseType: 'minor', | ||
}, | ||
{ | ||
name: 'change: fix', | ||
changelogTitle: 'Fix', | ||
description: 'Fixes a bug', | ||
releaseType: 'patch', | ||
}, | ||
{ | ||
name: 'change: documentation', | ||
changelogTitle: 'Documentation', | ||
description: 'Changes only affect the documentation', | ||
releaseType: 'patch', | ||
}, | ||
{ | ||
name: 'change: refactor', | ||
changelogTitle: 'Refactor', | ||
description: 'Changes that introduce no new features or fixes', | ||
releaseType: 'patch', | ||
}, | ||
{ | ||
name: 'change: performance', | ||
changelogTitle: 'Performance', | ||
description: 'Improve performance of an existing feature', | ||
releaseType: 'patch', | ||
}, | ||
{ | ||
name: 'change: dependencies', | ||
changelogTitle: 'Dependencies', | ||
description: 'Updates to dependencies only', | ||
releaseType: 'patch', | ||
}, | ||
{ | ||
name: 'change: chore', | ||
changelogTitle: 'Chore', | ||
description: 'Changes around build process', | ||
releaseType: 'none', | ||
}, | ||
{ | ||
name: 'change: tests', | ||
changelogTitle: 'Tests', | ||
description: 'Add or improve existing tests', | ||
releaseType: 'none', | ||
}, | ||
{ | ||
name: 'release: skip', | ||
description: 'Skips the release step when this pr is merged', | ||
releaseType: 'skip', | ||
}, | ||
{ | ||
name: 'state: released', | ||
description: 'PR has been released', | ||
releaseType: 'release', | ||
}, | ||
]; | ||
|
||
/** | ||
* @type {import('auto').AutoRc} | ||
*/ | ||
module.exports = { | ||
baseBranch: 'release', | ||
plugins: ['npm', 'slack', 'released'], | ||
noDefaultLabels: true, | ||
labels, | ||
prereleaseBranches: ['next'], | ||
}; |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"name": "eslint-javascript", | ||
"devDependencies": { | ||
"@xerox/eslint-config": "workspace:*" | ||
}, | ||
"private": true | ||
} |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "eslint-react", | ||
"dependencies": { | ||
"react": "18.1.0" | ||
}, | ||
"devDependencies": { | ||
"@xerox/eslint-config": "workspace:*" | ||
}, | ||
"private": true | ||
} |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "eslint-typescript", | ||
"devDependencies": { | ||
"@types/node": "18.11.18", | ||
"@xerox/eslint-config": "workspace:*", | ||
"typescript": "4.9.4" | ||
}, | ||
"private": true | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "eslint-typescriptreact", | ||
"dependencies": { | ||
"react": "18.1.0" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "18.11.18", | ||
"@types/react": "18.0.26", | ||
"@xerox/eslint-config": "workspace:*", | ||
"typescript": "4.9.4" | ||
}, | ||
"private": true | ||
} |
File renamed without changes.
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.