wawesome 0.0.11 → 0.0.12
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.
- package/dist/index.mjs +7 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -130,7 +130,12 @@ async function buildJs(entryInput, options) {
|
|
|
130
130
|
bundle: true,
|
|
131
131
|
format: "esm",
|
|
132
132
|
outfile: outPath,
|
|
133
|
-
platform: "
|
|
133
|
+
platform: "browser",
|
|
134
|
+
conditions: [
|
|
135
|
+
"workerd",
|
|
136
|
+
"worker",
|
|
137
|
+
"browser"
|
|
138
|
+
],
|
|
134
139
|
target: "es2022",
|
|
135
140
|
treeShaking: true,
|
|
136
141
|
minify: true,
|
|
@@ -161,7 +166,7 @@ async function buildJs(entryInput, options) {
|
|
|
161
166
|
* that has to name this version — `--version`, the dependency a scaffolded
|
|
162
167
|
* project pins — reads it here, so a release bumps one file.
|
|
163
168
|
*/
|
|
164
|
-
const CLI_VERSION = "0.0.
|
|
169
|
+
const CLI_VERSION = "0.0.12";
|
|
165
170
|
//#endregion
|
|
166
171
|
//#region src/prompt.ts
|
|
167
172
|
/**
|