Skip to content

Commit 1f1663a

Browse files
committed
feat: multithreaded rendering
1 parent 620ead3 commit 1f1663a

File tree

12 files changed

+1663
-1015
lines changed

12 files changed

+1663
-1015
lines changed

examples/multiple-pages-pwa/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"vite-plugin-md": "^0.11.4",
1818
"vite-plugin-pages": "^0.18.2",
1919
"vite-plugin-pwa": "^0.11.5",
20-
"vite-ssg": "workspace:*",
20+
"@vuetify/vite-ssg": "workspace:*",
2121
"vue-router": "^4.0.12"
2222
}
2323
}

examples/multiple-pages-with-store/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"vite-plugin-components": "^0.13.3",
1919
"vite-plugin-md": "^0.11.4",
2020
"vite-plugin-pages": "^0.18.2",
21-
"vite-ssg": "workspace:*",
21+
"@vuetify/vite-ssg": "workspace:*",
2222
"vue-router": "^4.0.12"
2323
}
2424
}

examples/multiple-pages/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"vite-plugin-components": "^0.13.3",
1717
"vite-plugin-md": "^0.11.4",
1818
"vite-plugin-pages": "^0.18.2",
19-
"vite-ssg": "workspace:*",
19+
"@vuetify/vite-ssg": "workspace:*",
2020
"vue-router": "^4.0.12"
2121
}
2222
}

examples/single-page/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
"cross-env": "^7.0.3",
1515
"typescript": "^4.4.4",
1616
"vite": "^2.6.14",
17-
"vite-ssg": "workspace:*"
17+
"@vuetify/vite-ssg": "workspace:*"
1818
}
1919
}

package.json

+8-6
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
"fs-extra": "^10.0.0",
6969
"html-minifier": "^4.0.0",
7070
"jsdom": "^17.0.0",
71+
"piscina": "^3.2.0",
7172
"prettier": "^2.4.1",
7273
"yargs": "^17.3.0"
7374
},
@@ -84,22 +85,23 @@
8485
}
8586
},
8687
"devDependencies": {
87-
"@antfu/eslint-config": "^0.10.0",
88+
"@antfu/eslint-config": "^0.39.5",
8889
"@types/fs-extra": "^9.0.13",
8990
"@types/html-minifier": "^4.0.1",
9091
"@types/jsdom": "^16.2.13",
9192
"@types/prettier": "^2.4.2",
9293
"@types/yargs": "^17.0.5",
93-
"@typescript-eslint/eslint-plugin": "^5.4.0",
94+
"@typescript-eslint/eslint-plugin": "^5.59.11",
95+
"@typescript-eslint/parser": "^5.59.11",
9496
"@vueuse/head": "^0.6.0",
9597
"bumpp": "^7.1.1",
9698
"critters": "^0.0.14",
97-
"eslint": "^8.2.0",
98-
"esno": "^0.12.0",
99+
"eslint": "^8.42.0",
100+
"esno": "^0.16.3",
99101
"rollup": "^2.60.0",
100102
"standard-version": "^9.3.2",
101-
"tsup": "^5.7.1",
102-
"typescript": "^4.4.4",
103+
"tsup": "^6.7.0",
104+
"typescript": "~5.0.4",
103105
"vite": "^2.6.14",
104106
"vite-plugin-pwa": "^0.11.5",
105107
"vue": "^3.2.22",

0 commit comments

Comments
 (0)