@vexblocks/cli 1.0.8 → 1.0.9
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 +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -487,7 +487,6 @@ async function installBackendPackage(targetPath, sourcePath, spinner) {
|
|
|
487
487
|
logger.info(`Backed up existing schema to ${path4.basename(backupPath)}`);
|
|
488
488
|
const cmsFiles = [
|
|
489
489
|
"convex/cms",
|
|
490
|
-
"convex/schema.cms.ts",
|
|
491
490
|
"convex/auth.ts",
|
|
492
491
|
"convex/auth.config.ts",
|
|
493
492
|
"convex/http.ts",
|
|
@@ -1161,7 +1160,7 @@ async function upgradePackage(cwd, pkg, version, manifest, options) {
|
|
|
1161
1160
|
});
|
|
1162
1161
|
} else {
|
|
1163
1162
|
spinner.text = `Upgrading CMS files in ${PACKAGE_NAMES[pkg]}...`;
|
|
1164
|
-
const cmsFiles = ["convex/cms"
|
|
1163
|
+
const cmsFiles = ["convex/cms"];
|
|
1165
1164
|
for (const file of cmsFiles) {
|
|
1166
1165
|
const targetFilePath = path7.join(targetPath, file);
|
|
1167
1166
|
const sourceFilePath = `packages/backend/${file}`;
|