-
-
Notifications
You must be signed in to change notification settings - Fork 591
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into commonjs-strict-requires-true
- Loading branch information
Showing
89 changed files
with
1,206 additions
and
447 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,4 +1,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
pnpm dlx lint-staged | ||
pnpm exec lint-staged |
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 |
---|---|---|
|
@@ -9,28 +9,23 @@ | |
"lint:js": "eslint --cache packages scripts shared util --ext .js,.ts,.mjs", | ||
"lint:json": "prettier --write .github/**/*.yml **/tsconfig.json tsconfig.*.json pnpm-workspace.yaml", | ||
"lint:package": "prettier --write **/package.json", | ||
"package:release": "versioner --stripShortName='^@.+/plugin-' --target", | ||
"package:release": "versioner --stripShortName='^@.+/(plugin-)?' --target", | ||
"preinstall": "node scripts/disallow-npm.js", | ||
"prepare": "husky install", | ||
"prettier": "prettier --write .", | ||
"prettier:check": "prettier --check .", | ||
"security": "pnpm audit --audit-level=high" | ||
}, | ||
"devDependencies": { | ||
"@ava/babel": "2.0.0", | ||
"@dot/versioner": "^0.3.1", | ||
"@rollup/plugin-typescript": "^9.0.1", | ||
"@types/conventional-commits-parser": "^3.0.2", | ||
"@types/node": "14.18.30", | ||
"@types/semver": "^7.3.7", | ||
"@types/source-map-support": "^0.5.4", | ||
"@types/yargs-parser": "^20.2.1", | ||
"@typescript-eslint/eslint-plugin": "^5.38.0", | ||
"@typescript-eslint/parser": "^5.38.0", | ||
"ava": "^4.3.3", | ||
"chalk": "^4.1.0", | ||
"codecov-lite": "2.0.0", | ||
"conventional-commits-parser": "^3.2.1", | ||
"del-cli": "^5.0.0", | ||
"eslint-config-rollup": "^3.0.1", | ||
"esm": "^3.2.25", | ||
|
@@ -41,14 +36,9 @@ | |
"nyc": "^15.1.0", | ||
"pnpm": "^8.7.5", | ||
"prettier-plugin-package": "^1.3.0", | ||
"semver": "^7.3.2", | ||
"source-map-support": "^0.5.21", | ||
"ts-node": "10.9.1", | ||
"tsconfig-paths": "^3.9.0", | ||
"typescript": "^4.8.3", | ||
"write-pkg": "^4.0.0", | ||
"yaml": "^1.10.0", | ||
"yargs-parser": "^20.2.9" | ||
"typescript": "^4.8.3" | ||
}, | ||
"ava": { | ||
"files": [ | ||
|
@@ -85,5 +75,6 @@ | |
"lib/client*.js", | ||
"test/" | ||
] | ||
} | ||
}, | ||
"packageManager": "[email protected]+sha512.d1a029e1a447ad90bc96cd58b0fad486d2993d531856396f7babf2d83eb1823bb83c5a3d0fc18f675b2d10321d49eb161fece36fe8134aa5823ecd215feed392" | ||
} |
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
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
3 changes: 3 additions & 0 deletions
3
.../commonjs/test/fixtures/function/class-body-property-keys-are-special-keywords/_config.js
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,3 @@ | ||
module.exports = { | ||
description: 'preserve the class body property keys even if they are special keywords', | ||
}; |
7 changes: 7 additions & 0 deletions
7
...ges/commonjs/test/fixtures/function/class-body-property-keys-are-special-keywords/main.js
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 @@ | ||
class Rollup { | ||
define; | ||
require; | ||
global; | ||
} | ||
|
||
exports.Rollup = Rollup; |
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
Binary file not shown.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
const dn = __dirname; | ||
|
||
module.exports = { | ||
keyword: ' import', | ||
dn | ||
}; |
Oops, something went wrong.