Skip to content

Commit 9507595

Browse files
Merge pull request #65 from contentstack/staging
Add Nuxt and Remix framework preset options
2 parents 7a2d3da + 931be6a commit 9507595

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

package-lock.json

Lines changed: 16 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@contentstack/cli-launch",
3-
"version": "1.9.2",
3+
"version": "1.9.3",
44
"description": "Launch related operations",
55
"author": "Contentstack CLI",
66
"bin": {

src/config/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ const config = {
1515
CRA: './build',
1616
CSR: './',
1717
ANGULAR: './dist',
18+
NUXT: './.output',
1819
VUEJS: './dist',
20+
REMIX: './build',
1921
OTHER: './',
2022
},
2123
listOfFrameWorks: [
@@ -24,7 +26,9 @@ const config = {
2426
{ name: 'CRA (Create React App)', value: 'CRA' },
2527
{ name: 'CSR (Client-Side Rendered)', value: 'CSR' },
2628
{ name: 'Angular', value: 'ANGULAR' },
29+
{ name: 'Nuxt', value: 'NUXT' },
2730
{ name: 'VueJs', value: 'VUEJS' },
31+
{ name: 'Remix', value: 'REMIX' },
2832
{ name: 'Other', value: 'OTHER' },
2933
],
3034
providerMapper: {
@@ -43,7 +47,7 @@ const config = {
4347
VariablePreparationTypeOptions.SKIP_SETUP,
4448
],
4549
variableType: '',
46-
supportedFrameworksForServerCommands: ['ANGULAR', 'OTHER', 'REMIX'],
50+
supportedFrameworksForServerCommands: ['ANGULAR', 'OTHER', 'REMIX', 'NUXT'],
4751
supportedFileUploadMethods: ['last file upload', 'new file']
4852

4953
};

0 commit comments

Comments
 (0)