@utoo/pack 1.3.0-alpha.0 → 1.3.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/config_schema.json +14 -0
  2. package/package.json +9 -9
@@ -1221,6 +1221,20 @@
1221
1221
  "description": "Style configuration",
1222
1222
  "type": "object",
1223
1223
  "properties": {
1224
+ "autoCssModules": {
1225
+ "description": "Enable automatic CSS Modules transform",
1226
+ "type": [
1227
+ "boolean",
1228
+ "null"
1229
+ ]
1230
+ },
1231
+ "emotion": {
1232
+ "description": "Enable @emotion/react transform support",
1233
+ "type": [
1234
+ "boolean",
1235
+ "null"
1236
+ ]
1237
+ },
1224
1238
  "inlineCss": {
1225
1239
  "description": "Inline CSS configuration"
1226
1240
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utoo/pack",
3
- "version": "1.3.0-alpha.0",
3
+ "version": "1.3.0-alpha.1",
4
4
  "main": "cjs/index.js",
5
5
  "module": "esm/index.js",
6
6
  "types": "esm/index.d.ts",
@@ -41,7 +41,7 @@
41
41
  "@hono/node-server": "^1.19.11",
42
42
  "@hono/node-ws": "^1.3.0",
43
43
  "@swc/helpers": "0.5.15",
44
- "@utoo/pack-shared": "1.3.0-alpha.0",
44
+ "@utoo/pack-shared": "1.3.0-alpha.1",
45
45
  "@utoo/style-loader": "^1.0.0",
46
46
  "domparser-rs": "^0.0.7",
47
47
  "find-up": "4.1.0",
@@ -90,12 +90,12 @@
90
90
  },
91
91
  "repository": "git@github.com:utooland/utoo.git",
92
92
  "optionalDependencies": {
93
- "@utoo/pack-darwin-arm64": "1.3.0-alpha.0",
94
- "@utoo/pack-darwin-x64": "1.3.0-alpha.0",
95
- "@utoo/pack-linux-arm64-gnu": "1.3.0-alpha.0",
96
- "@utoo/pack-linux-arm64-musl": "1.3.0-alpha.0",
97
- "@utoo/pack-linux-x64-gnu": "1.3.0-alpha.0",
98
- "@utoo/pack-linux-x64-musl": "1.3.0-alpha.0",
99
- "@utoo/pack-win32-x64-msvc": "1.3.0-alpha.0"
93
+ "@utoo/pack-darwin-arm64": "1.3.0-alpha.1",
94
+ "@utoo/pack-darwin-x64": "1.3.0-alpha.1",
95
+ "@utoo/pack-linux-arm64-gnu": "1.3.0-alpha.1",
96
+ "@utoo/pack-linux-arm64-musl": "1.3.0-alpha.1",
97
+ "@utoo/pack-linux-x64-gnu": "1.3.0-alpha.1",
98
+ "@utoo/pack-linux-x64-musl": "1.3.0-alpha.1",
99
+ "@utoo/pack-win32-x64-msvc": "1.3.0-alpha.1"
100
100
  }
101
101
  }