@biffo/cli 0.273.4 → 0.273.5
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 +5 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8031,6 +8031,11 @@ async function runStandaloneCreate(names, options, deps) {
|
|
|
8031
8031
|
log.success(
|
|
8032
8032
|
`Manifest valid \u2014 ${String(manifest.tables.length)} table(s), ${String(manifest.api_routes.length)} route(s)`
|
|
8033
8033
|
);
|
|
8034
|
+
writeFileSync9(
|
|
8035
|
+
join26(destDir, ".biffo-shared-version"),
|
|
8036
|
+
`core-v${getLatestCoreVersion().replace(/^core-v/, "")}
|
|
8037
|
+
`
|
|
8038
|
+
);
|
|
8034
8039
|
if (options.commit) {
|
|
8035
8040
|
await deps.git.init(destDir);
|
|
8036
8041
|
await deps.git.add(destDir, ["."]);
|