Skip to content

Commit 45ac6ed

Browse files
committed
[refactor] merge Wrap Logic of Sync & Async Function components to support Async Importing & Loading
[optimize] upgrade Upstream packages
1 parent 4b3a4f4 commit 45ac6ed

File tree

7 files changed

+1445
-1462
lines changed

7 files changed

+1445
-1462
lines changed

.npmignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
*.sh
22
.*
3-
eslint.config.mjs
4-
jest.config.ts
3+
*.config.ts
54
test/
65
preview/
76
Contributing.md

package.json

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-cell",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "Web Components engine based on VDOM, JSX, MobX & TypeScript",
55
"keywords": [
66
"web",
@@ -38,41 +38,41 @@
3838
"jsdom": ">=23.1"
3939
},
4040
"devDependencies": {
41-
"@cspell/eslint-plugin": "^9.1.1",
42-
"@eslint/js": "^9.29.0",
43-
"@parcel/config-default": "~2.15.2",
44-
"@parcel/packager-ts": "~2.15.2",
45-
"@parcel/transformer-typescript-tsc": "~2.15.2",
46-
"@parcel/transformer-typescript-types": "~2.15.2",
47-
"@stylistic/eslint-plugin": "^4.4.1",
41+
"@cspell/eslint-plugin": "^9.2.0",
42+
"@eslint/js": "^9.31.0",
43+
"@parcel/config-default": "~2.15.4",
44+
"@parcel/packager-ts": "~2.15.4",
45+
"@parcel/transformer-typescript-tsc": "~2.15.4",
46+
"@parcel/transformer-typescript-types": "~2.15.4",
47+
"@stylistic/eslint-plugin": "^5.2.1",
4848
"@types/eslint-config-prettier": "^6.11.3",
4949
"@types/jest": "^29.5.14",
50-
"@types/node": "^22.15.31",
51-
"core-js": "^3.43.0",
50+
"@types/node": "^22.16.5",
51+
"core-js": "^3.44.0",
5252
"element-internals-polyfill": "^1.3.13",
53-
"eslint": "^9.29.0",
54-
"eslint-config-prettier": "^10.1.5",
53+
"eslint": "^9.31.0",
54+
"eslint-config-prettier": "^10.1.8",
5555
"eslint-plugin-react": "^7.37.5",
5656
"eslint-plugin-simple-import-sort": "^12.1.1",
57-
"globals": "^16.2.0",
57+
"globals": "^16.3.0",
5858
"husky": "^9.1.7",
5959
"jest": "^29.7.0",
6060
"jest-environment-jsdom": "^29.7.0",
6161
"jiti": "^2.4.2",
6262
"jsdom": "^26.1.0",
63-
"lint-staged": "^16.1.1",
64-
"parcel": "~2.15.2",
65-
"prettier": "^3.5.3",
66-
"prettier-plugin-sh": "^0.17.4",
63+
"lint-staged": "^16.1.2",
64+
"parcel": "~2.15.4",
65+
"prettier": "^3.6.2",
66+
"prettier-plugin-sh": "^0.18.0",
6767
"replace": "^1.2.2",
6868
"rimraf": "^6.0.1",
6969
"serve": "^14.2.4",
7070
"ts-jest": "^29.4.0",
7171
"ts-node": "^10.9.2",
72-
"typedoc": "^0.28.5",
73-
"typedoc-plugin-mdn-links": "^5.0.2",
72+
"typedoc": "^0.28.7",
73+
"typedoc-plugin-mdn-links": "^5.0.5",
7474
"typescript": "~5.8.3",
75-
"typescript-eslint": "^8.34.0"
75+
"typescript-eslint": "^8.37.0"
7676
},
7777
"pnpm": {
7878
"onlyBuiltDependencies": [
@@ -104,6 +104,7 @@
104104
"trailingComma": "none",
105105
"arrowParens": "avoid",
106106
"tabWidth": 4,
107+
"printWidth": 100,
107108
"plugins": [
108109
"prettier-plugin-sh"
109110
]

0 commit comments

Comments
 (0)