Update
This commit is contained in:
parent
a27416f190
commit
574ff427d1
4
build.sh
4
build.sh
@ -1,8 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
./src/build-local-rules.ts
|
./src/build-local-rules.ts
|
||||||
./esbuild.ts
|
./esbuild.ts
|
||||||
npx tsc ./src/local/index.ts --outdir ./dist/local --target ESNext --module CommonJS >/dev/null
|
npx tsc ./src/local/index.ts --outdir ./dist/local --target ESNext --module CommonJS --esModuleInterop >/dev/null
|
||||||
npx tsc ./src/basic.ts --outdir ./dist --declaration --target ESNext --module CommonJS >/dev/null
|
npx tsc ./src/index.ts --outdir ./dist --declaration --target ESNext --module CommonJS --esModuleInterop >/dev/null
|
||||||
|
|
||||||
type() {
|
type() {
|
||||||
npx dts-bundle-generator "./eslint-plugin-$1/$2" \
|
npx dts-bundle-generator "./eslint-plugin-$1/$2" \
|
||||||
|
14
dist/package.json
vendored
14
dist/package.json
vendored
@ -1,16 +1,14 @@
|
|||||||
{
|
{
|
||||||
"name": "@aet/eslint-rules",
|
"name": "@aet/eslint-rules",
|
||||||
"version": "0.0.1-beta.22",
|
"version": "0.0.1-beta.23",
|
||||||
"license": "UNLICENSED",
|
"license": "UNLICENSED",
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": "^5.1.6",
|
"typescript": "^5.1.6"
|
||||||
"@typescript-eslint/eslint-plugin": "6.2.0",
|
|
||||||
"@typescript-eslint/parser": "6.2.0",
|
|
||||||
"eslint-config-prettier": "8.9.0",
|
|
||||||
"eslint-import-resolver-typescript": "3.5.5"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/eslint": "^8.44.1",
|
"@types/eslint": "^8.44.1",
|
||||||
|
"@typescript-eslint/eslint-plugin": "6.2.1",
|
||||||
|
"@typescript-eslint/parser": "6.2.1",
|
||||||
"aria-query": "^5.3.0",
|
"aria-query": "^5.3.0",
|
||||||
"axe-core": "4.7.2",
|
"axe-core": "4.7.2",
|
||||||
"axobject-query": "^3.2.1",
|
"axobject-query": "^3.2.1",
|
||||||
@ -18,14 +16,16 @@
|
|||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
"doctrine": "^3.0.0",
|
"doctrine": "^3.0.0",
|
||||||
"emoji-regex": "^10.2.1",
|
"emoji-regex": "^10.2.1",
|
||||||
|
"eslint-config-prettier": "8.9.0",
|
||||||
"eslint-define-config": "^1.22.0",
|
"eslint-define-config": "^1.22.0",
|
||||||
"eslint-import-resolver-node": "^0.3.7",
|
"eslint-import-resolver-node": "^0.3.7",
|
||||||
|
"eslint-import-resolver-typescript": "3.5.5",
|
||||||
"eslint-module-utils": "^2.8.0",
|
"eslint-module-utils": "^2.8.0",
|
||||||
"estraverse": "^5.3.0",
|
"estraverse": "^5.3.0",
|
||||||
"lodash": "^4.17.21",
|
|
||||||
"is-core-module": "^2.12.1",
|
"is-core-module": "^2.12.1",
|
||||||
"is-glob": "^4.0.3",
|
"is-glob": "^4.0.3",
|
||||||
"language-tags": "^1.0.8",
|
"language-tags": "^1.0.8",
|
||||||
|
"lodash": "^4.17.21",
|
||||||
"minimatch": "^9.0.3",
|
"minimatch": "^9.0.3",
|
||||||
"prop-types": "^15.8.1",
|
"prop-types": "^15.8.1",
|
||||||
"resolve": "^2.0.0-next.4",
|
"resolve": "^2.0.0-next.4",
|
||||||
|
@ -227,6 +227,4 @@ main('./eslint-plugin-import/src/index.js', './dist/import/index.js');
|
|||||||
main('./eslint-plugin-jsx-a11y/src/index.js', './dist/jsx-a11y/index.js');
|
main('./eslint-plugin-jsx-a11y/src/index.js', './dist/jsx-a11y/index.js');
|
||||||
main('./eslint-plugin-react-hooks/index.ts', './dist/react-hooks/index.js');
|
main('./eslint-plugin-react-hooks/index.ts', './dist/react-hooks/index.js');
|
||||||
main('./eslint-plugin-n/lib/index.js', './dist/n/index.js');
|
main('./eslint-plugin-n/lib/index.js', './dist/n/index.js');
|
||||||
main('./src/add-alias.ts', './dist/add-alias.js');
|
|
||||||
main('./src/remove-alias.ts', './dist/remove-alias.js');
|
|
||||||
main('./src/rules/index.ts', './dist/rules/index.js');
|
main('./src/rules/index.ts', './dist/rules/index.js');
|
||||||
|
20
package.json
20
package.json
@ -11,22 +11,22 @@
|
|||||||
"@babel/preset-env": "^7.22.9",
|
"@babel/preset-env": "^7.22.9",
|
||||||
"@types/babel-plugin-macros": "^3.1.0",
|
"@types/babel-plugin-macros": "^3.1.0",
|
||||||
"@types/babel__core": "^7.20.1",
|
"@types/babel__core": "^7.20.1",
|
||||||
"@types/eslint": "^8.44.0",
|
"@types/eslint": "^8.44.1",
|
||||||
"@types/estree": "^1.0.1",
|
"@types/estree": "^1.0.1",
|
||||||
"@types/estree-jsx": "^1.0.0",
|
"@types/estree-jsx": "^1.0.0",
|
||||||
"@types/lodash": "^4.14.195",
|
"@types/lodash": "^4.14.196",
|
||||||
"@types/node": "^20.4.2",
|
"@types/node": "^20.4.5",
|
||||||
"@typescript-eslint/types": "^6.1.0",
|
"@typescript-eslint/types": "^6.2.1",
|
||||||
"babel-plugin-macros": "^3.1.0",
|
"babel-plugin-macros": "^3.1.0",
|
||||||
"dts-bundle-generator": "^8.0.1",
|
"dts-bundle-generator": "^8.0.1",
|
||||||
"esbin": "0.0.1-beta.1",
|
"esbin": "0.0.1-beta.2",
|
||||||
"esbuild": "0.18.14",
|
"esbuild": "0.18.17",
|
||||||
"esbuild-plugin-alias": "^0.2.1",
|
"esbuild-plugin-alias": "^0.2.1",
|
||||||
"esbuild-register": "3.4.2",
|
"esbuild-register": "3.4.2",
|
||||||
"eslint": "8.45.0",
|
"eslint": "8.46.0",
|
||||||
"eslint-config-prettier": "8.8.0",
|
"eslint-config-prettier": "8.9.0",
|
||||||
"eslint-define-config": "^1.21.0",
|
"eslint-define-config": "^1.22.0",
|
||||||
"eslint-plugin-import": "^2.27.5",
|
"eslint-plugin-import": "^2.28.0",
|
||||||
"eslint-plugin-unicorn": "^48.0.1",
|
"eslint-plugin-unicorn": "^48.0.1",
|
||||||
"glob": "^10.3.3",
|
"glob": "^10.3.3",
|
||||||
"json-schema-to-ts": "^2.9.1",
|
"json-schema-to-ts": "^2.9.1",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user