Skip to content

Commit b6a08a6

Browse files
manucorporatadamdbradley
andauthoredJul 18, 2022
feat: vite 3 integration (QwikDev#776)
Co-authored-by: Adam Bradley <adamdbradley@users.noreply.github.com>
1 parent ba4416f commit b6a08a6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1083
-792
lines changed
 

‎package.json

+15-8
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@
2323
"start": "concurrently \"npm:build.watch\" \"npm:test.watch\" \"npm:tsc.watch\" -n build,test,tsc -c green,magenta,cyan",
2424
"release.prepare": "yarn lint && yarn test.unit && yarn node scripts --tsc --build --api --eslint --platform-binding --wasm --prepare-release",
2525
"release.prepare.qwik-city": "cd packages/qwik-city && yarn test && yarn build && yarn node -r esbuild-register scripts/prepare-release.ts",
26-
"test": "yarn build.full && jest && yarn test.e2e",
27-
"test.unit": "jest",
26+
"test": "yarn build.full && yarn test.unit && yarn test.e2e",
27+
"test.unit": "jest && yarn test.uvu",
28+
"test.uvu": "uvu -r tsm packages test.ts",
2829
"test.rust": "make test",
2930
"test.watch": "jest --watch",
3031
"test.e2e": "yarn test.e2e.chromium && yarn test.e2e.firefox && yarn test.e2e.webkit",
@@ -48,7 +49,6 @@
4849
"devDependencies": {
4950
"@builder.io/partytown": "0.6.2",
5051
"@builder.io/qwik-dom": "2.1.18",
51-
"@jest/types": "^28.1.3",
5252
"@microsoft/api-extractor": "7.28.4",
5353
"@napi-rs/cli": "2.6.2",
5454
"@napi-rs/triples": "1.1.0",
@@ -58,7 +58,6 @@
5858
"@types/cross-spawn": "6.0.2",
5959
"@types/eslint": "8.4.5",
6060
"@types/express": "4.17.13",
61-
"@types/jest": "^28.1.5",
6261
"@types/mri": "1.1.1",
6362
"@types/node": "latest",
6463
"@types/node-fetch": "2.6.2",
@@ -69,13 +68,13 @@
6968
"@typescript-eslint/utils": "5.30.6",
7069
"all-contributors-cli": "^6.20.0",
7170
"brotli": "1.3.3",
72-
"commitizen": "4.2.4",
71+
"commitizen": "4.2.5",
7372
"concurrently": "7.2.2",
7473
"cross-spawn": "7.0.3",
7574
"cz-conventional-changelog": "3.3.0",
7675
"esbuild": "0.14.49",
7776
"esbuild-register": "3.3.3",
78-
"eslint": "8.19.0",
77+
"eslint": "8.20.0",
7978
"eslint-plugin-no-only-tests": "2.6.0",
8079
"execa": "6.1.0",
8180
"express": "4.18.1",
@@ -90,9 +89,9 @@
9089
"terser": "5.14.2",
9190
"todomvc-app-css": "2.4.2",
9291
"todomvc-common": "1.0.5",
93-
"ts-jest": "28.0.6",
92+
"ts-jest": "28.0.7",
9493
"typescript": "4.7.4",
95-
"vite": "3.0.0",
94+
"vite": "3.0.1",
9695
"vite-tsconfig-paths": "3.5.0",
9796
"wasm-pack": "0.10.3"
9897
},
@@ -137,6 +136,10 @@
137136
"useESM": true
138137
}
139138
},
139+
"extensionsToTreatAsEsm": [
140+
".ts",
141+
".tsx"
142+
],
140143
"moduleFileExtensions": [
141144
"ts",
142145
"tsx",
@@ -191,5 +194,9 @@
191194
"<rootDir>/target/"
192195
],
193196
"testRegex": "/(scripts|packages)/.*\\.unit\\.(ts|tsx)$"
197+
},
198+
"dependencies": {
199+
"tsm": "^2.2.1",
200+
"uvu": "^0.5.6"
194201
}
195202
}

‎packages/docs/functions/[[path]].ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
// Cloudflare Pages Functions
44
// https://developers.cloudflare.com/pages/platform/functions/
5-
export { onRequestGet } from '../server/entry.cloudflare.js';
5+
export { onRequestGet } from '../server/entry.cloudflare';

0 commit comments

Comments
 (0)
Please sign in to comment.