create-waku
Advanced tools
Comparing version 0.7.0-alpha.2 to 0.7.0-beta.0
{ | ||
"name": "create-waku", | ||
"version": "0.7.0-alpha.2", | ||
"version": "0.7.0-beta.0", | ||
"publishConfig": { | ||
@@ -5,0 +5,0 @@ "tag": "next" |
@@ -14,3 +14,3 @@ { | ||
"react-dom": "18.3.0-canary-c5b937576-20231219", | ||
"waku": "0.19.0-alpha.2" | ||
"waku": "0.19.0-beta.0" | ||
}, | ||
@@ -17,0 +17,0 @@ "devDependencies": { |
@@ -14,3 +14,3 @@ { | ||
"react-dom": "18.3.0-canary-c5b937576-20231219", | ||
"waku": "0.19.0-alpha.2" | ||
"waku": "0.19.0-beta.0" | ||
}, | ||
@@ -17,0 +17,0 @@ "devDependencies": { |
@@ -14,3 +14,3 @@ { | ||
"react-dom": "18.3.0-canary-c5b937576-20231219", | ||
"waku": "0.19.0-alpha.2" | ||
"waku": "0.19.0-beta.0" | ||
}, | ||
@@ -17,0 +17,0 @@ "devDependencies": { |
@@ -14,3 +14,3 @@ { | ||
"react-dom": "18.3.0-canary-c5b937576-20231219", | ||
"waku": "0.19.0-alpha.2" | ||
"waku": "0.19.0-beta.0" | ||
}, | ||
@@ -17,0 +17,0 @@ "devDependencies": { |
@@ -15,3 +15,3 @@ { | ||
"react-wrap-balancer": "1.1.0", | ||
"waku": "0.19.0-alpha.2" | ||
"waku": "0.19.0-beta.0" | ||
}, | ||
@@ -18,0 +18,0 @@ "devDependencies": { |
@@ -14,3 +14,3 @@ { | ||
"react-dom": "18.3.0-canary-c5b937576-20231219", | ||
"waku": "0.19.0-alpha.2" | ||
"waku": "0.19.0-beta.0" | ||
}, | ||
@@ -17,0 +17,0 @@ "devDependencies": { |
@@ -14,3 +14,3 @@ { | ||
"react-dom": "18.3.0-canary-c5b937576-20231219", | ||
"waku": "0.19.0-alpha.2" | ||
"waku": "0.19.0-beta.0" | ||
}, | ||
@@ -17,0 +17,0 @@ "devDependencies": { |
@@ -16,3 +16,3 @@ { | ||
"react-dom": "18.3.0-canary-c5b937576-20231219", | ||
"waku": "0.19.0-alpha.2" | ||
"waku": "0.19.0-beta.0" | ||
}, | ||
@@ -19,0 +19,0 @@ "devDependencies": { |
@@ -14,3 +14,3 @@ { | ||
"react-dom": "18.3.0-canary-c5b937576-20231219", | ||
"waku": "0.19.0-alpha.2" | ||
"waku": "0.19.0-beta.0" | ||
}, | ||
@@ -17,0 +17,0 @@ "devDependencies": { |
@@ -15,3 +15,3 @@ { | ||
"react-dom": "18.3.0-canary-c5b937576-20231219", | ||
"waku": "0.19.0-alpha.2" | ||
"waku": "0.19.0-beta.0" | ||
}, | ||
@@ -18,0 +18,0 @@ "devDependencies": { |
@@ -14,3 +14,3 @@ { | ||
"react-dom": "18.3.0-canary-c5b937576-20231219", | ||
"waku": "0.19.0-alpha.2" | ||
"waku": "0.19.0-beta.0" | ||
}, | ||
@@ -17,0 +17,0 @@ "devDependencies": { |
@@ -13,5 +13,7 @@ { | ||
"@stylexjs/stylex": "0.4.1", | ||
"@vanilla-extract/css": "1.14.0", | ||
"classnames": "2.3.2", | ||
"react": "18.3.0-canary-c5b937576-20231219", | ||
"react-dom": "18.3.0-canary-c5b937576-20231219", | ||
"waku": "0.19.0-alpha.2" | ||
"waku": "0.19.0-beta.0" | ||
}, | ||
@@ -21,8 +23,8 @@ "devDependencies": { | ||
"@types/react-dom": "18.2.18", | ||
"@vanilla-extract/css": "1.14.0", | ||
"@vanilla-extract/vite-plugin": "3.9.3", | ||
"typescript": "5.3.3", | ||
"vite": "5.0.10", | ||
"vite-plugin-commonjs": "0.10.1", | ||
"vite-plugin-stylex": "0.4.1" | ||
} | ||
} |
import { defineConfig } from 'vite'; | ||
import { vanillaExtractPlugin } from '@vanilla-extract/vite-plugin'; | ||
import styleX from 'vite-plugin-stylex'; | ||
import commonjs from 'vite-plugin-commonjs'; | ||
@@ -9,3 +10,16 @@ export default defineConfig({ | ||
}, | ||
plugins: [vanillaExtractPlugin({ emitCssInSsr: true }), styleX()], | ||
plugins: [ | ||
vanillaExtractPlugin({ emitCssInSsr: true }), | ||
styleX(), | ||
// @ts-expect-error not callable FIXME why not callable? | ||
commonjs({ | ||
filter(id: string) { | ||
// `node_modules` is exclude by default, so we need to include it explicitly | ||
// https://github.com/vite-plugin/vite-plugin-commonjs/blob/v0.10.1/src/index.ts#L141-L142 | ||
if (id.includes('node_modules/classnames')) { | ||
return true; | ||
} | ||
}, | ||
}), | ||
], | ||
}); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
205151
115
2377