fix: pnpm filter on windows (#26)

This commit is contained in:
LemonNeko
2025-02-20 16:16:47 +08:00
committed by GitHub
parent 55b65bbabe
commit 97d829df7a
28 changed files with 1105 additions and 1501 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
[build]
publish = "packages/memory-driver-duckdb/playground/dist"
command = "pnpm run build"
base = "/"
command = "pnpm -F @proj-airi/drizzle-duckdb-wasm... run build"
publish = "/packages/drizzle-duckdb-wasm/playground/dist"
[build.environment]
NODE_VERSION = "23"
+3 -3
View File
@@ -69,19 +69,19 @@
"@date-fns/tz": "^1.2.0",
"@duckdb/duckdb-wasm": "^1.29.0",
"@proj-airi/duckdb-wasm": "workspace:^",
"apache-arrow": "^19.0.0",
"apache-arrow": "^19.0.1",
"date-fns": "^4.1.0",
"defu": "^6.1.4",
"drizzle-orm": "^0.39.3",
"es-toolkit": "^1.32.0"
},
"devDependencies": {
"@unocss/reset": "^65.5.0",
"@unocss/reset": "^66.0.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vueuse/core": "^12.7.0",
"drizzle-kit": "^0.30.4",
"superjson": "^2.2.2",
"vite": "^6.1.0",
"vite": "^6.1.1",
"vue": "^3.5.13",
"vue-tsc": "^2.2.2"
}
+32 -6
View File
@@ -1,7 +1,33 @@
import { defineConfig, mergeConfigs } from 'unocss'
import {
defineConfig,
presetAttributify,
presetIcons,
presetTypography,
presetWebFonts,
presetWind3,
transformerDirectives,
transformerVariantGroup,
} from 'unocss'
import UnoCSSConfig from '../../uno.config'
export default defineConfig(mergeConfigs([
UnoCSSConfig,
]))
export default defineConfig({
presets: [
presetWind3(),
presetAttributify(),
presetTypography(),
presetWebFonts({
fonts: {
sans: 'DM Sans',
serif: 'DM Serif Display',
mono: 'DM Mono',
},
}),
presetIcons({
scale: 1.2,
}),
],
transformers: [
transformerDirectives(),
transformerVariantGroup(),
],
safelist: 'prose prose-sm m-auto text-left'.split(' '),
})
+1 -1
View File
@@ -64,7 +64,7 @@
"dependencies": {
"@date-fns/tz": "^1.2.0",
"@duckdb/duckdb-wasm": "^1.29.0",
"apache-arrow": "^19.0.0",
"apache-arrow": "^19.0.1",
"date-fns": "^4.1.0",
"defu": "^6.1.4",
"drizzle-orm": "^0.39.3",
+1 -1
View File
@@ -43,6 +43,6 @@
"dependencies": {
"defu": "^6.1.4",
"gray-matter": "^4.0.3",
"vite": "^6.1.0"
"vite": "^6.1.1"
}
}
+1 -1
View File
@@ -41,6 +41,6 @@
},
"dependencies": {
"ofetch": "^1.4.1",
"vite": "^6.1.0"
"vite": "^6.1.1"
}
}
+1 -1
View File
@@ -41,7 +41,7 @@
},
"dependencies": {
"ofetch": "^1.4.1",
"vite": "^6.1.0",
"vite": "^6.1.1",
"yauzl": "^3.2.0"
}
}