@wix/create-new 0.0.46 → 0.0.48
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/build/{chunk-G37X6RCS.js → chunk-OJ4BF6SG.js} +5 -3
- package/build/{chunk-G37X6RCS.js.map → chunk-OJ4BF6SG.js.map} +1 -1
- package/build/{generator-NVASIFXO.js → generator-22SWDX6P.js} +7 -3
- package/build/generator-22SWDX6P.js.map +1 -0
- package/build/index.js +46 -25
- package/build/index.js.map +1 -1
- package/package.json +2 -2
- package/templates/app/blank/wix.config.json.ejs +2 -0
- package/build/generator-NVASIFXO.js.map +0 -1
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
require_lib,
|
|
14
14
|
temporaryDirectory,
|
|
15
15
|
updateEnvFile
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-OJ4BF6SG.js";
|
|
17
17
|
import {
|
|
18
18
|
__toESM,
|
|
19
19
|
init_esm_shims
|
|
@@ -76,6 +76,8 @@ async function generateApp({
|
|
|
76
76
|
template,
|
|
77
77
|
templateParams,
|
|
78
78
|
ideForMcp,
|
|
79
|
+
namespace,
|
|
80
|
+
codeIdentifier,
|
|
79
81
|
environmentVariables
|
|
80
82
|
}) {
|
|
81
83
|
const model = {
|
|
@@ -93,7 +95,9 @@ async function generateApp({
|
|
|
93
95
|
isMonorepo: (0, import_variant.isType)(repoType, RepoType.Monorepo),
|
|
94
96
|
templateParams,
|
|
95
97
|
generatePageID: () => randomUUID(),
|
|
96
|
-
ideForMcpType: ideForMcp?.type
|
|
98
|
+
ideForMcpType: ideForMcp?.type,
|
|
99
|
+
namespace,
|
|
100
|
+
codeIdentifier
|
|
97
101
|
};
|
|
98
102
|
const templateFolder = await (0, import_variant.match)(template, {
|
|
99
103
|
App: ({ payload: { cliCloneData } }) => fetchTemplate(
|
|
@@ -115,4 +119,4 @@ async function generateApp({
|
|
|
115
119
|
export {
|
|
116
120
|
generateApp
|
|
117
121
|
};
|
|
118
|
-
//# sourceMappingURL=generator-
|
|
122
|
+
//# sourceMappingURL=generator-22SWDX6P.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../create-new-packages/app-command/src/services/generator/index.ts","../../create-new-packages/app-command/src/services/generator/generator-service.ts","../../create-new-packages/app-command/src/services/generator/template-fetcher.ts"],"sourcesContent":["export { generateApp } from './generator-service.js';\n","import { randomUUID } from 'node:crypto';\nimport { isType, match } from 'variant';\nimport { generator } from '@wix/gena';\nimport { getTestOverrides } from '@wix/cli-test-overrides';\nimport type { IPackageManager } from '@wix/package-manager';\nimport { RepoType } from '@wix/package-manager';\nimport { updateEnvFile } from '@wix/cli-fs';\nimport { getEnvFilePath } from '@wix/cli-astro-definitions';\nimport type { AppData } from '../../types.js';\nimport type { TemplateSource } from '../../parse-command-options.js';\nimport type { TemplateParams } from '../../validations/index.js';\nimport { fetchTemplate } from './template-fetcher.js';\nimport type { IdeForMcp } from '../../components/mcp/ConfigMcp.js';\n\ninterface GenerateAppOptions {\n packageName: string;\n packageFolder: string;\n packageManager: IPackageManager;\n repoType: RepoType;\n appData: AppData;\n template: TemplateSource;\n namespace: string;\n codeIdentifier: string;\n templateParams?: TemplateParams;\n ideForMcp?: IdeForMcp | void;\n environmentVariables: Record<string, string>;\n}\n\ninterface TemplateModelJSON {\n packageName: string;\n namespace: string;\n codeIdentifier: string;\n devCenter: { appId: string; appName: string };\n packageManager: { name: string; installCmd: string; runCmd: string };\n isMonorepo: boolean;\n deps: Record<string, string>;\n generatePageID: () => string;\n templateParams?: TemplateParams;\n ideForMcpType?: string;\n}\n\nconst { wixCliDependencyVersion, wixCliAppDependencyVersion } =\n getTestOverrides();\n\nexport async function generateApp({\n packageName,\n packageFolder,\n appData,\n packageManager,\n repoType,\n template,\n templateParams,\n ideForMcp,\n namespace,\n codeIdentifier,\n environmentVariables,\n}: GenerateAppOptions): Promise<void> {\n const model: TemplateModelJSON = {\n packageName,\n devCenter: appData,\n deps: {\n '@wix/cli': wixCliDependencyVersion ?? '^1.0.0',\n '@wix/cli-app': wixCliAppDependencyVersion ?? '^1.0.0',\n },\n packageManager: {\n name: packageManager.name,\n installCmd: packageManager.getInstallCmd(),\n runCmd: packageManager.getRunCmd(),\n },\n isMonorepo: isType(repoType, RepoType.Monorepo),\n templateParams,\n generatePageID: () => randomUUID(),\n ideForMcpType: ideForMcp?.type,\n namespace,\n codeIdentifier,\n };\n\n const templateFolder = await match(template, {\n App: ({ payload: { cliCloneData } }) =>\n fetchTemplate(\n cliCloneData.repositoryUrl,\n cliCloneData.pathInRepository,\n 'astro-app-template'\n ),\n GitRepo: ({ url, path }) => fetchTemplate(url, path),\n Local: ({ path }) => path,\n Default: ({ path }) => path,\n });\n\n await generator({\n template: templateFolder,\n cwd: packageFolder,\n data: model,\n });\n\n await updateEnvFile(getEnvFilePath(packageFolder), environmentVariables);\n}\n","import { join } from 'node:path';\nimport { rm } from 'node:fs/promises';\nimport { temporaryDirectory } from 'tempy';\nimport isGitUrl from 'is-git-url';\nimport { pathExists } from '@wix/cli-fs';\nimport { CliError, CliErrorCode } from '@wix/cli-error';\nimport { gitClone } from '@wix/package-manager';\n\nasync function downloadAndExtractRepo(url: string, branch?: string) {\n const repoDir = temporaryDirectory({ prefix: 'wix-create-app' });\n\n try {\n await gitClone(url, repoDir, branch);\n await rm(join(repoDir, '.git'), { recursive: true, force: true });\n\n return repoDir;\n } catch (e) {\n throw new CliError({\n code: CliErrorCode.FailedToCloneRepo(),\n cause: e,\n });\n }\n}\n\nexport async function fetchTemplate(url: string, path = '.', branch?: string) {\n if (!isGitUrl(url)) {\n throw new CliError({\n code: CliErrorCode.InvalidGitUrl({ url }),\n info: { url },\n cause: null,\n });\n }\n\n const repoDir = await downloadAndExtractRepo(url, branch);\n const templateDirInRepo = join(repoDir, path);\n\n if (!(await pathExists(templateDirInRepo))) {\n throw new CliError({\n code: CliErrorCode.TemplatePathNotFound({ templatePath: path }),\n info: { templatePath: path },\n cause: null,\n });\n }\n\n return templateDirInRepo;\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA;;;ACAA;AACA,qBAA8B;AAD9B,SAAS,kBAAkB;;;ACA3B;AAAA,SAAS,YAAY;AACrB,SAAS,UAAU;AAEnB,wBAAqB;AAKrB,eAAe,uBAAuB,KAAa,QAAiB;AAClE,QAAM,UAAU,mBAAmB,EAAE,QAAQ,iBAAiB,CAAC;AAE/D,MAAI;AACF,UAAM,SAAS,KAAK,SAAS,MAAM;AACnC,UAAM,GAAG,KAAK,SAAS,MAAM,GAAG,EAAE,WAAW,MAAM,OAAO,KAAK,CAAC;AAEhE,WAAO;AAAA,EACT,SAAS,GAAG;AACV,UAAM,IAAI,SAAS;AAAA,MACjB,MAAM,aAAa,kBAAkB;AAAA,MACrC,OAAO;AAAA,IACT,CAAC;AAAA,EACH;AACF;AAEA,eAAsB,cAAc,KAAa,OAAO,KAAK,QAAiB;AAC5E,MAAI,KAAC,kBAAAA,SAAS,GAAG,GAAG;AAClB,UAAM,IAAI,SAAS;AAAA,MACjB,MAAM,aAAa,cAAc,EAAE,IAAI,CAAC;AAAA,MACxC,MAAM,EAAE,IAAI;AAAA,MACZ,OAAO;AAAA,IACT,CAAC;AAAA,EACH;AAEA,QAAM,UAAU,MAAM,uBAAuB,KAAK,MAAM;AACxD,QAAM,oBAAoB,KAAK,SAAS,IAAI;AAE5C,MAAI,CAAE,MAAM,WAAW,iBAAiB,GAAI;AAC1C,UAAM,IAAI,SAAS;AAAA,MACjB,MAAM,aAAa,qBAAqB,EAAE,cAAc,KAAK,CAAC;AAAA,MAC9D,MAAM,EAAE,cAAc,KAAK;AAAA,MAC3B,OAAO;AAAA,IACT,CAAC;AAAA,EACH;AAEA,SAAO;AACT;;;ADJA,IAAM,EAAE,yBAAyB,2BAA2B,IAC1D,iBAAiB;AAEnB,eAAsB,YAAY;AAAA,EAChC;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,GAAsC;AACpC,QAAM,QAA2B;AAAA,IAC/B;AAAA,IACA,WAAW;AAAA,IACX,MAAM;AAAA,MACJ,YAAY,2BAA2B;AAAA,MACvC,gBAAgB,8BAA8B;AAAA,IAChD;AAAA,IACA,gBAAgB;AAAA,MACd,MAAM,eAAe;AAAA,MACrB,YAAY,eAAe,cAAc;AAAA,MACzC,QAAQ,eAAe,UAAU;AAAA,IACnC;AAAA,IACA,gBAAY,uBAAO,UAAU,SAAS,QAAQ;AAAA,IAC9C;AAAA,IACA,gBAAgB,MAAM,WAAW;AAAA,IACjC,eAAe,WAAW;AAAA,IAC1B;AAAA,IACA;AAAA,EACF;AAEA,QAAM,iBAAiB,UAAM,sBAAM,UAAU;AAAA,IAC3C,KAAK,CAAC,EAAE,SAAS,EAAE,aAAa,EAAE,MAChC;AAAA,MACE,aAAa;AAAA,MACb,aAAa;AAAA,MACb;AAAA,IACF;AAAA,IACF,SAAS,CAAC,EAAE,KAAK,KAAK,MAAM,cAAc,KAAK,IAAI;AAAA,IACnD,OAAO,CAAC,EAAE,KAAK,MAAM;AAAA,IACrB,SAAS,CAAC,EAAE,KAAK,MAAM;AAAA,EACzB,CAAC;AAED,QAAM,UAAU;AAAA,IACd,UAAU;AAAA,IACV,KAAK;AAAA,IACL,MAAM;AAAA,EACR,CAAC;AAED,QAAM,cAAc,eAAe,aAAa,GAAG,oBAAoB;AACzE;","names":["isGitUrl"]}
|
package/build/index.js
CHANGED
|
@@ -116,7 +116,7 @@ import {
|
|
|
116
116
|
writeJson,
|
|
117
117
|
writePackageJson,
|
|
118
118
|
zod_default
|
|
119
|
-
} from "./chunk-
|
|
119
|
+
} from "./chunk-OJ4BF6SG.js";
|
|
120
120
|
import {
|
|
121
121
|
__commonJS,
|
|
122
122
|
__dirname,
|
|
@@ -80547,15 +80547,21 @@ var createShareUrlSchema = external_exports.object({
|
|
|
80547
80547
|
var listShareUrlsSchema = external_exports.object({
|
|
80548
80548
|
shareUrls: external_exports.array(shareUrlSchema)
|
|
80549
80549
|
});
|
|
80550
|
+
var setNamespaceSchema = external_exports.object({
|
|
80551
|
+
namespace: external_exports.string()
|
|
80552
|
+
});
|
|
80553
|
+
var setCodeIdentifierSchema = external_exports.object({
|
|
80554
|
+
codeIdentifier: external_exports.string()
|
|
80555
|
+
});
|
|
80550
80556
|
|
|
80551
80557
|
// ../dev-center-client/src/dev-center-client.ts
|
|
80552
80558
|
var EMPTY_SITE_TEMPLATE = "24bafe8a-7c80-4b63-8a71-08752062f246";
|
|
80553
80559
|
var SetCodeIdentifierResult = (0, import_variant26.variant)({
|
|
80554
|
-
Success:
|
|
80560
|
+
Success: (0, import_variant26.fields)(),
|
|
80555
80561
|
ShouldBeUnique: (0, import_variant26.fields)()
|
|
80556
80562
|
});
|
|
80557
80563
|
var SetNamespaceResult = (0, import_variant26.variant)({
|
|
80558
|
-
Success:
|
|
80564
|
+
Success: (0, import_variant26.fields)(),
|
|
80559
80565
|
ShouldBeUnique: (0, import_variant26.fields)()
|
|
80560
80566
|
});
|
|
80561
80567
|
var DevCenterClient = class {
|
|
@@ -80611,10 +80617,12 @@ var DevCenterClient = class {
|
|
|
80611
80617
|
};
|
|
80612
80618
|
setNamespace = async ({ appId, namespace }) => {
|
|
80613
80619
|
try {
|
|
80614
|
-
await this.httpClient.request(
|
|
80620
|
+
const { data } = await this.httpClient.request(
|
|
80615
80621
|
setNamespace({ appId, appName: namespace })
|
|
80616
80622
|
);
|
|
80617
|
-
return SetNamespaceResult.Success(
|
|
80623
|
+
return SetNamespaceResult.Success({
|
|
80624
|
+
namespace: setNamespaceSchema.parse(data).namespace
|
|
80625
|
+
});
|
|
80618
80626
|
} catch (e2) {
|
|
80619
80627
|
if (isHttpError(e2) && e2.response?.status === 409 && isHttpApplicationError(e2) && e2.response.data.details.applicationError.code === "ALREADY_EXISTS") {
|
|
80620
80628
|
return SetNamespaceResult.ShouldBeUnique({ namespace });
|
|
@@ -80630,10 +80638,12 @@ var DevCenterClient = class {
|
|
|
80630
80638
|
codeIdentifier
|
|
80631
80639
|
}) => {
|
|
80632
80640
|
try {
|
|
80633
|
-
await this.httpClient.request(
|
|
80641
|
+
const { data } = await this.httpClient.request(
|
|
80634
80642
|
setCodeIdentifier({ appId, codeIdentifier })
|
|
80635
80643
|
);
|
|
80636
|
-
return SetCodeIdentifierResult.Success(
|
|
80644
|
+
return SetCodeIdentifierResult.Success({
|
|
80645
|
+
codeIdentifier: setCodeIdentifierSchema.parse(data).codeIdentifier
|
|
80646
|
+
});
|
|
80637
80647
|
} catch (e2) {
|
|
80638
80648
|
if (isHttpError(e2) && e2.response?.status === 409 && isHttpApplicationError(e2) && e2.response.data.details.applicationError.code === "ALREADY_EXISTS") {
|
|
80639
80649
|
return SetCodeIdentifierResult.ShouldBeUnique({ codeIdentifier });
|
|
@@ -81627,6 +81637,7 @@ var ChooseCodeIdentifier = ({
|
|
|
81627
81637
|
if ((0, import_variant33.isType)(result, SetCodeIdentifierResult.ShouldBeUnique)) {
|
|
81628
81638
|
return `Code identifier ${submitedCodeIdentifier} is already used. Try another.`;
|
|
81629
81639
|
}
|
|
81640
|
+
onSubmit(result.codeIdentifier);
|
|
81630
81641
|
return true;
|
|
81631
81642
|
}
|
|
81632
81643
|
);
|
|
@@ -81644,7 +81655,6 @@ var ChooseCodeIdentifier = ({
|
|
|
81644
81655
|
questionKey: "create_app.choose_code_identifier.label",
|
|
81645
81656
|
answer: codeIdentifier
|
|
81646
81657
|
});
|
|
81647
|
-
onSubmit(codeIdentifier);
|
|
81648
81658
|
},
|
|
81649
81659
|
inCreateFlow: true
|
|
81650
81660
|
}
|
|
@@ -81676,6 +81686,7 @@ var ChooseNamespace = ({
|
|
|
81676
81686
|
if ((0, import_variant34.isType)(result, SetNamespaceResult.ShouldBeUnique)) {
|
|
81677
81687
|
return `Namespace ${submitedNamespace} is already used. Try another.`;
|
|
81678
81688
|
}
|
|
81689
|
+
onSubmit(result.namespace);
|
|
81679
81690
|
return true;
|
|
81680
81691
|
}
|
|
81681
81692
|
);
|
|
@@ -81693,7 +81704,6 @@ var ChooseNamespace = ({
|
|
|
81693
81704
|
questionKey: "create_app.choose_namespace.label",
|
|
81694
81705
|
answer: namespace
|
|
81695
81706
|
});
|
|
81696
|
-
onSubmit(namespace);
|
|
81697
81707
|
},
|
|
81698
81708
|
inCreateFlow: true
|
|
81699
81709
|
}
|
|
@@ -81715,7 +81725,10 @@ var PostAppRegistration = ({ appId, packageName, onPostRegistrationComplete }) =
|
|
|
81715
81725
|
{
|
|
81716
81726
|
appId,
|
|
81717
81727
|
packageName,
|
|
81718
|
-
onSubmit: onPostRegistrationComplete
|
|
81728
|
+
onSubmit: (codeIdentifier) => onPostRegistrationComplete({
|
|
81729
|
+
namespace,
|
|
81730
|
+
codeIdentifier
|
|
81731
|
+
})
|
|
81719
81732
|
}
|
|
81720
81733
|
));
|
|
81721
81734
|
};
|
|
@@ -82520,7 +82533,9 @@ var useAppCreation = ({ extendAppId }) => {
|
|
|
82520
82533
|
appData: { appName, appId },
|
|
82521
82534
|
packageName,
|
|
82522
82535
|
mcpConfigResult,
|
|
82523
|
-
environmentVariables
|
|
82536
|
+
environmentVariables,
|
|
82537
|
+
codeIdentifier: "",
|
|
82538
|
+
namespace: ""
|
|
82524
82539
|
};
|
|
82525
82540
|
return appCreationResult;
|
|
82526
82541
|
}
|
|
@@ -82566,8 +82581,8 @@ var NewAppFlow = ({
|
|
|
82566
82581
|
{
|
|
82567
82582
|
appId,
|
|
82568
82583
|
packageName,
|
|
82569
|
-
onPostRegistrationComplete: () => {
|
|
82570
|
-
onSubmit(appCreationData);
|
|
82584
|
+
onPostRegistrationComplete: (data) => {
|
|
82585
|
+
onSubmit({ ...appCreationData, ...data });
|
|
82571
82586
|
}
|
|
82572
82587
|
}
|
|
82573
82588
|
));
|
|
@@ -82742,6 +82757,8 @@ var ExistingAppFlow = ({
|
|
|
82742
82757
|
packageName,
|
|
82743
82758
|
template: TemplateSource.Default(),
|
|
82744
82759
|
mcpConfigResult: McpConfigResult.Canceled(),
|
|
82760
|
+
namespace: "",
|
|
82761
|
+
codeIdentifier: "",
|
|
82745
82762
|
environmentVariables: variables
|
|
82746
82763
|
});
|
|
82747
82764
|
}
|
|
@@ -82996,7 +83013,9 @@ function getTasks({
|
|
|
82996
83013
|
skipInstall,
|
|
82997
83014
|
skipGit,
|
|
82998
83015
|
mcpConfigResult,
|
|
82999
|
-
environmentVariables
|
|
83016
|
+
environmentVariables,
|
|
83017
|
+
codeIdentifier,
|
|
83018
|
+
namespace
|
|
83000
83019
|
}, t3) {
|
|
83001
83020
|
const packageFolder = join10(targetParentFolder2, packageName);
|
|
83002
83021
|
const generateProject = async () => {
|
|
@@ -83008,7 +83027,7 @@ function getTasks({
|
|
|
83008
83027
|
cause: e2
|
|
83009
83028
|
});
|
|
83010
83029
|
}
|
|
83011
|
-
const { generateApp } = await import("./generator-
|
|
83030
|
+
const { generateApp } = await import("./generator-22SWDX6P.js");
|
|
83012
83031
|
await generateApp({
|
|
83013
83032
|
packageName,
|
|
83014
83033
|
packageFolder,
|
|
@@ -83017,6 +83036,8 @@ function getTasks({
|
|
|
83017
83036
|
repoType: repoType2,
|
|
83018
83037
|
template,
|
|
83019
83038
|
templateParams,
|
|
83039
|
+
codeIdentifier,
|
|
83040
|
+
namespace,
|
|
83020
83041
|
ideForMcp: (0, import_variant43.match)(mcpConfigResult, {
|
|
83021
83042
|
Created: ({ ideForMcp }) => ideForMcp,
|
|
83022
83043
|
Canceled: () => {
|
|
@@ -95953,20 +95974,17 @@ var getHeadlessCommand = ({
|
|
|
95953
95974
|
}
|
|
95954
95975
|
});
|
|
95955
95976
|
program3.command("init", { isDefault: true }).description("Create headless site").addOption(
|
|
95956
|
-
new Option(
|
|
95957
|
-
"--skip-install",
|
|
95958
|
-
"Skip automatic dependency installation"
|
|
95959
|
-
).hideHelp()
|
|
95977
|
+
new Option("--skip-install", "Skip automatic dependency installation")
|
|
95960
95978
|
).addOption(
|
|
95961
95979
|
new Option(
|
|
95962
95980
|
"--skip-git",
|
|
95963
95981
|
"Skip initializing a Git repository during setup"
|
|
95964
|
-
)
|
|
95982
|
+
)
|
|
95965
95983
|
).addOption(
|
|
95966
95984
|
new Option(
|
|
95967
95985
|
"--site-template-id <site-template-id>",
|
|
95968
95986
|
"Site Template ID to use for the app creation"
|
|
95969
|
-
).argParser(validateUUID2)
|
|
95987
|
+
).argParser(validateUUID2)
|
|
95970
95988
|
).addOption(
|
|
95971
95989
|
new Option(
|
|
95972
95990
|
"--template-repo <template-repo>",
|
|
@@ -95988,12 +96006,15 @@ var getHeadlessCommand = ({
|
|
|
95988
96006
|
"Additional template parameters to be provided to the app template should be formatted as a JSON string. These parameters can be accessed through the templateParams variable."
|
|
95989
96007
|
).argParser(validateTemplateParams2).hideHelp()
|
|
95990
96008
|
).addOption(
|
|
95991
|
-
new Option(
|
|
96009
|
+
new Option(
|
|
96010
|
+
"--business-name <business-name>",
|
|
96011
|
+
"The name of your business"
|
|
96012
|
+
).argParser(validateBusinessName)
|
|
95992
96013
|
).addOption(
|
|
95993
96014
|
new Option(
|
|
95994
96015
|
"--project-name <project-name>",
|
|
95995
96016
|
"The name of your Custom Frontend project"
|
|
95996
|
-
).argParser(validateProjectName)
|
|
96017
|
+
).argParser(validateProjectName)
|
|
95997
96018
|
).addOption(
|
|
95998
96019
|
new Option(
|
|
95999
96020
|
"--cloud-provider <cloud-provider>",
|
|
@@ -96003,7 +96024,7 @@ var getHeadlessCommand = ({
|
|
|
96003
96024
|
new Option(
|
|
96004
96025
|
"--no-publish",
|
|
96005
96026
|
"Do not publish your site at the end of the creation."
|
|
96006
|
-
)
|
|
96027
|
+
)
|
|
96007
96028
|
).addOption(
|
|
96008
96029
|
new Option("--publish", "Publish your site at the end of the creation.").default(true).hideHelp()
|
|
96009
96030
|
).version(cliVersion, "-v, --version").action(async (options, command) => {
|
|
@@ -96049,7 +96070,7 @@ import { randomUUID as randomUUID3 } from "node:crypto";
|
|
|
96049
96070
|
var package_default = {
|
|
96050
96071
|
name: "@wix/create-new",
|
|
96051
96072
|
description: "General entry point for creating Wix projects",
|
|
96052
|
-
version: "0.0.
|
|
96073
|
+
version: "0.0.48",
|
|
96053
96074
|
bin: "bin/index.cjs",
|
|
96054
96075
|
devDependencies: {
|
|
96055
96076
|
"@commander-js/extra-typings": "^13.0.0",
|