Skip to content

Commit ce76fa0

Browse files
authored
Merge pull request #130 from nix6839/cleanup-dependencies
Cleanup dependencies
2 parents 06c6095 + cf3a025 commit ce76fa0

File tree

11 files changed

+1914
-2159
lines changed

11 files changed

+1914
-2159
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
dist
2+
dist.*
23
./configs
34
node_modules
45
jest.config.js

.eslintrc.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
"object-shorthand": "warn",
2020
"@typescript-eslint/no-explicit-any": "off",
2121
"@typescript-eslint/no-non-null-assertion": "off",
22-
"@typescript-eslint/non-nullable-type-assertion-style": "warn"
22+
"@typescript-eslint/non-nullable-type-assertion-style": "warn",
23+
"no-extra-semi": "off",
24+
"no-mixed-spaces-and-tabs": "off"
2325
},
2426
"overrides": [
2527
{

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Build directory
22
dist
3-
standalone/dist.mjs
4-
standalone/dist.mjs.map
3+
dist.*
54

65
# Logs
76
logs

package.json

Lines changed: 24 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -37,50 +37,40 @@
3737
"README.md"
3838
],
3939
"dependencies": {
40-
"@typescript-eslint/utils": "^6.4.0",
40+
"@typescript-eslint/utils": "^6.21.0",
4141
"estraverse": "^5.3.0",
4242
"is-html": "^2.0.0",
4343
"kebab-case": "^1.0.2",
44-
"known-css-properties": "^0.24.0",
45-
"style-to-object": "^0.3.0"
44+
"known-css-properties": "^0.30.0",
45+
"style-to-object": "^1.0.6"
4646
},
4747
"devDependencies": {
48-
"@babel/core": "^7.21.3",
49-
"@babel/eslint-parser": "^7.21.3",
50-
"@eslint/js": "^8.44.0",
51-
"@rollup/plugin-commonjs": "^22.0.2",
52-
"@rollup/plugin-json": "^4.1.0",
53-
"@rollup/plugin-node-resolve": "^14.1.0",
54-
"@tsconfig/node20": "^20.1.2",
55-
"@types/eslint": "^8.40.2",
48+
"@babel/core": "^7.24.4",
49+
"@babel/eslint-parser": "^7.24.1",
50+
"@tsconfig/node20": "^20.1.4",
51+
"@types/eslint": "^8.56.7",
5652
"@types/estraverse": "^5.1.7",
57-
"@types/fs-extra": "^9.0.13",
58-
"@types/is-html": "^2.0.0",
59-
"@types/jest": "^27.5.2",
60-
"@types/markdown-magic": "^1.0.1",
61-
"@types/node": "^16.18.16",
62-
"@types/prettier": "^2.7.2",
63-
"@typescript-eslint/eslint-plugin": "^6.4.0",
64-
"@typescript-eslint/parser": "^6.4.0",
65-
"eslint": "^8.43.0",
66-
"eslint-plugin-eslint-plugin": "^5.0.8",
67-
"eslint-plugin-import": "^2.27.5",
53+
"@types/is-html": "^2.0.2",
54+
"@types/jest": "^29.5.12",
55+
"@types/markdown-magic": "^1.0.4",
56+
"@types/node": "^16.18.94",
57+
"@types/prettier": "^2.7.3",
58+
"@typescript-eslint/eslint-plugin": "^6.21.0",
59+
"@typescript-eslint/parser": "^6.21.0",
60+
"eslint": "^8.57.0",
61+
"eslint-plugin-eslint-plugin": "^5.5.0",
62+
"eslint-plugin-import": "^2.29.1",
6863
"eslint-plugin-solid": "link:",
6964
"eslint-v6": "npm:eslint@^6.8.0",
7065
"eslint-v7": "npm:eslint@^7.32.0",
71-
"execa": "^5.1.1",
72-
"fast-glob": "^3.2.12",
73-
"fs-extra": "^10.1.0",
74-
"husky": "^7.0.4",
75-
"jest": "^29.5.0",
76-
"jest-node-exports-resolver": "^1.1.6",
77-
"lint-staged": "^11.2.6",
66+
"husky": "^8.0.3",
67+
"jest": "^29.7.0",
68+
"lint-staged": "^13.3.0",
7869
"markdown-magic": "^2.6.1",
79-
"prettier": "^2.8.4",
80-
"rollup": "^2.79.1",
81-
"ts-jest": "^29.1.1",
82-
"ts-node": "^10.9.1",
83-
"typescript": "^5.4.2"
70+
"prettier": "^2.8.8",
71+
"ts-jest": "^29.1.2",
72+
"ts-node": "^10.9.2",
73+
"typescript": "^5.4.3"
8474
},
8575
"peerDependencies": {
8676
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"

0 commit comments

Comments
 (0)