Skip to content

Commit cc406e1

Browse files
committed
fix: Upgrade dependencies, support Rollup 3
Require Node.js 14.18 instead of 8 because of Rollup 3.
1 parent 6da22a8 commit cc406e1

File tree

4 files changed

+370
-338
lines changed

4 files changed

+370
-338
lines changed

package.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
"lib"
2626
],
2727
"engines": {
28-
"node": ">= 14"
28+
"node": ">= 14.18"
2929
},
3030
"scripts": {
3131
"prepare": "rollup -c",
3232
"lint": "denolint",
33-
"check": "teru-esm test/index.js",
34-
"cover": "c8 node teru-esm test/index.js",
35-
"test": "denolint && c8 teru-esm test/index.js"
33+
"check": "teru test/index.cjs && teru-esm test/index.js",
34+
"cover": "c8 teru-esm test/index.js",
35+
"test": "denolint && teru test/index.cjs && c8 teru-esm test/index.js"
3636
},
3737
"c8": {
3838
"check-coverage": true,
@@ -61,24 +61,25 @@
6161
]
6262
},
6363
"dependencies": {
64-
"@rollup/pluginutils": "^4.2.1",
64+
"@rollup/pluginutils": "^5.0.2",
6565
"@semantic-release/changelog": "^6.0.1",
6666
"@semantic-release/git": "^10.0.1",
67-
"postcss": "^8.4.14",
68-
"rollup-copy-transform-css": "^1.2.3"
67+
"postcss": "^8.4.18",
68+
"rollup-copy-transform-css": "^1.2.4"
6969
},
7070
"devDependencies": {
71-
"@node-rs/deno-lint": "^1.14.0",
7271
"builtin-modules": "^3.3.0",
7372
"c8": "^7.12.0",
74-
"rollup": "^2.77.2",
73+
"denolint": "^2.0.4",
74+
"rollup": "^3.2.3",
75+
"rollup-plugin-css-lit": "link:",
7576
"tehanu": "^1.0.1",
7677
"tehanu-repo-coco": "^1.0.0",
7778
"tehanu-teru": "^1.0.0"
7879
},
7980
"peerDependencies": {
8081
"lit": "^2",
81-
"rollup": "^2"
82+
"rollup": "^2 || ^3"
8283
},
8384
"keywords": [
8485
"rollup",

0 commit comments

Comments
 (0)