1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00

cli - new handler respects latestPackagesFolder

This commit is contained in:
Michael Shanks 2019-11-07 21:46:47 +00:00
parent 933a70f3ff
commit accc9e300e
3 changed files with 11 additions and 7 deletions

View file

@ -2,17 +2,18 @@ const { getAppContext } = require("../../common");
const {
getMasterApisWithFullAccess
} = require("@budibase/server/utilities/budibaseApi");
const { copy, readJSON, writeJSON, remove } = require("fs-extra");
const { copy, readJSON, writeJSON, remove, exists } = require("fs-extra");
const { resolve, join } = require("path");
const thisPackageJson = require("../../../package.json");
const {exec} = require('child_process');
module.exports = ({name}) => {
run({name});
module.exports = (opts) => {
run(opts);
}
const run = async (opts) => {
const context = await getAppContext({configName:opts.config, masterIsCreated:true});
opts.config = context.config;
const bb = await getMasterApisWithFullAccess(context);
const app = bb.recordApi.getNew("/applications", "application");
@ -28,11 +29,14 @@ const createEmtpyAppPackage = async (opts) => {
const templateFolder = resolve(
__dirname, "appPackageTemplate");
const destinationFolder = resolve(".", opts.name);
const appsFolder = opts.config.latestPackagesFolder || ".";
const destinationFolder = resolve(appsFolder, opts.name);
if(await exists(destinationFolder)) return;
await copy(templateFolder, destinationFolder);
const packageJsonPath = join(opts.name, "package.json");
const packageJsonPath = join(appsFolder, opts.name, "package.json");
const packageJson = await readJSON(packageJsonPath);
packageJson.name = opts.name;

View file

@ -20,6 +20,6 @@ module.exports.getAppContext = async ({configName, masterIsCreated}) => {
configName = "config.js";
}
const config = require(join(cwd(), configName))();
const config = require(resolve(cwd(), configName))();
return await buildAppContext(config, masterIsCreated);
}

View file

@ -6,7 +6,7 @@
"scripts": {
"test": "jest",
"build": "cd appPackages/_master && yarn && cd ../testApp && yarn && cd ../testApp2 && yarn",
"initialise": "node initialise/initialiseBudibase --datastore local --username admin --password admin --rootPath .data --cleanDev",
"initialise": "node initialise/initialiseBudibase --datastore local --username admin --password admin --rootPath .data --cleanDev && node ../cli/bin/budi new testApp2",
"dev:builder": "node index"
},
"keywords": [