Skip to content

Commit a298f2e

Browse files
committed
feat: update deps & better cli output
1 parent dd53652 commit a298f2e

11 files changed

+7087
-5215
lines changed

examples/react/pnpm-lock.yaml

+715-612
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jest.config.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ module.exports = {
44
roots: ['./tests'],
55
testMatch: ['**/?(*.)+(spec|test).+(ts)'],
66
transform: {
7-
'^.+\\.ts?$': 'ts-jest',
7+
'^.+\\.ts?$': ['ts-jest', { diagnostics: false }],
88
},
99
transformIgnorePatterns: ['<rootDir>/node_modules/'],
1010
testPathIgnorePatterns: ['/node_modules/'],
11-
globals: { 'ts-jest': { diagnostics: false } },
1211
extensionsToTreatAsEsm: ['.ts'],
1312
setupFilesAfterEnv: ['./jest.setup.js'],
1413
};

package.json

+37-39
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"staticit": "dist/index.js"
99
},
1010
"engines": {
11-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
11+
"node": ">=18.20.4"
1212
},
1313
"scripts": {
1414
"dev": "tsc-watch --onSuccess \"node .\"",
@@ -36,10 +36,7 @@
3636
"static site generator",
3737
"static site generation",
3838
"prerender",
39-
"ssg",
40-
"sifrr",
41-
"uwebsockets",
42-
"puppeteer"
39+
"ssg"
4340
],
4441
"author": "Alcadramin <hello@alca.dev>",
4542
"license": "MIT",
@@ -52,46 +49,47 @@
5249
"url": "https://opencollective.com/engineerhub"
5350
},
5451
"devDependencies": {
55-
"@commitlint/cli": "^16.3.0",
56-
"@commitlint/config-conventional": "^16.2.4",
57-
"@rollup/plugin-json": "^4.1.0",
58-
"@types/express": "^4.17.13",
59-
"@types/finalhandler": "^1.1.1",
60-
"@types/jest": "^27.5.2",
61-
"@types/node": "^17.0.38",
62-
"@types/serve-static": "^1.13.10",
63-
"@types/shelljs": "^0.8.11",
64-
"@typescript-eslint/eslint-plugin": "^5.27.0",
65-
"@typescript-eslint/parser": "^5.27.0",
66-
"esbuild": "^0.14.42",
67-
"eslint": "^8.16.0",
68-
"eslint-config-prettier": "^8.5.0",
69-
"eslint-plugin-import": "^2.26.0",
70-
"eslint-plugin-jest": "^26.4.6",
71-
"eslint-plugin-prettier": "^4.0.0",
72-
"eslint-plugin-simple-import-sort": "^7.0.0",
73-
"finalhandler": "^1.2.0",
74-
"husky": "^7.0.4",
75-
"jest": "^27.5.1",
76-
"jest-puppeteer": "^6.1.0",
52+
"@commitlint/cli": "^19.5.0",
53+
"@commitlint/config-conventional": "^19.5.0",
54+
"@rollup/plugin-json": "^6.1.0",
55+
"@types/express": "^5.0.0",
56+
"@types/finalhandler": "^1.2.3",
57+
"@types/jest": "^29.5.13",
58+
"@types/node": "^22.7.4",
59+
"@types/serve-static": "^1.15.7",
60+
"@types/shelljs": "^0.8.15",
61+
"@typescript-eslint/eslint-plugin": "^8.7.0",
62+
"@typescript-eslint/parser": "^8.7.0",
63+
"esbuild": "^0.24.0",
64+
"eslint": "^9.11.1",
65+
"eslint-config-prettier": "^9.1.0",
66+
"eslint-plugin-import": "^2.30.0",
67+
"eslint-plugin-jest": "^28.8.3",
68+
"eslint-plugin-prettier": "^5.2.1",
69+
"eslint-plugin-simple-import-sort": "^12.1.1",
70+
"finalhandler": "^1.3.1",
71+
"husky": "^9.1.6",
72+
"jest": "^29.7.0",
73+
"jest-puppeteer": "^10.1.1",
7774
"pre-commit": "^1.2.2",
78-
"rimraf": "^3.0.2",
79-
"rollup": "^2.75.5",
80-
"rollup-plugin-dts": "^4.2.2",
81-
"rollup-plugin-esbuild": "^4.9.1",
82-
"serve-static": "^1.15.0",
75+
"rimraf": "^6.0.1",
76+
"rollup": "^4.22.5",
77+
"rollup-plugin-dts": "^6.1.1",
78+
"rollup-plugin-esbuild": "^6.1.1",
79+
"serve-static": "^1.16.2",
8380
"shelljs": "^0.8.5",
8481
"standard-version": "^9.5.0",
85-
"ts-jest": "^27.1.5",
86-
"tsc-watch": "^5.0.3",
87-
"typescript": "^4.7.2"
82+
"ts-jest": "^29.2.5",
83+
"tsc-watch": "^6.2.0",
84+
"typescript": "^5.6.2"
8885
},
8986
"dependencies": {
9087
"chalk": "^4.1.2",
91-
"commander": "^9.3.0",
92-
"express": "^4.18.1",
93-
"prettier": "^2.6.2",
94-
"puppeteer": "^13.7.0"
88+
"commander": "^12.1.0",
89+
"express": "^4.21.0",
90+
"prettier": "^3.3.3",
91+
"puppeteer": "^23.4.1",
92+
"readline": "^1.3.0"
9593
},
9694
"husky": {
9795
"hooks": {

0 commit comments

Comments
 (0)