Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contentstack/cli-launch",
"version": "1.9.2",
"version": "1.9.3",
"description": "Launch related operations",
"author": "Contentstack CLI",
"bin": {
Expand Down
6 changes: 5 additions & 1 deletion src/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ const config = {
CRA: './build',
CSR: './',
ANGULAR: './dist',
NUXT: './.output',
VUEJS: './dist',
REMIX: './build',
OTHER: './',
},
listOfFrameWorks: [
Expand All @@ -24,7 +26,9 @@ const config = {
{ name: 'CRA (Create React App)', value: 'CRA' },
{ name: 'CSR (Client-Side Rendered)', value: 'CSR' },
{ name: 'Angular', value: 'ANGULAR' },
{ name: 'Nuxt', value: 'NUXT' },
{ name: 'VueJs', value: 'VUEJS' },
{ name: 'Remix', value: 'REMIX' },
{ name: 'Other', value: 'OTHER' },
],
providerMapper: {
Expand All @@ -43,7 +47,7 @@ const config = {
VariablePreparationTypeOptions.SKIP_SETUP,
],
variableType: '',
supportedFrameworksForServerCommands: ['ANGULAR', 'OTHER', 'REMIX'],
supportedFrameworksForServerCommands: ['ANGULAR', 'OTHER', 'REMIX', 'NUXT'],
supportedFileUploadMethods: ['last file upload', 'new file']

};
Expand Down