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.
Files changed (2) hide show
  1. package/dist/index.mjs +7 -2
  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: "neutral",
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.11";
169
+ const CLI_VERSION = "0.0.12";
165
170
  //#endregion
166
171
  //#region src/prompt.ts
167
172
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wawesome",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "CLI tool for building and deploying serverless functions on wawesome.io platform",
5
5
  "type": "module",
6
6
  "bin": {