create-wizze-app 0.1.10 → 0.1.11
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.js
CHANGED
|
@@ -138,7 +138,7 @@ async function patchProjectMetadata(input) {
|
|
|
138
138
|
const devDependencies = packageJson.devDependencies && typeof packageJson.devDependencies === 'object'
|
|
139
139
|
? { ...packageJson.devDependencies }
|
|
140
140
|
: {};
|
|
141
|
-
devDependencies.wizze = '^0.1.
|
|
141
|
+
devDependencies.wizze = '^0.1.11';
|
|
142
142
|
packageJson.devDependencies = devDependencies;
|
|
143
143
|
await writeFile(packageJsonPath, `${JSON.stringify(packageJson, null, 2)}\n`, 'utf8');
|
|
144
144
|
const appJson = JSON.parse(await readFile(appJsonPath, 'utf8'));
|
package/package.json
CHANGED
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
"clean": "rm -rf dist"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@wizze/wizze-sdk": "^0.1.
|
|
15
|
+
"@wizze/wizze-sdk": "^0.1.11"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"tsx": "^4.20.6",
|
|
19
19
|
"typescript": "^5.9.3",
|
|
20
|
-
"wizze": "^0.1.
|
|
20
|
+
"wizze": "^0.1.11"
|
|
21
21
|
}
|
|
22
22
|
}
|