generator-single-spa
Advanced tools
Comparing version 1.2.4 to 1.3.0
@@ -13,3 +13,3 @@ { | ||
}, | ||
"version": "1.2.4", | ||
"version": "1.3.0", | ||
"main": "src/generator-single-spa.js", | ||
@@ -26,3 +26,3 @@ "license": "MIT", | ||
}, | ||
"gitHead": "f47e7f472f154af799cef37d7c4b3fe108d4988e" | ||
"gitHead": "cc6778acf69b0f2d31e24f155f471b7a07f210de" | ||
} |
@@ -6,4 +6,4 @@ const Generator = require('yeoman-generator') | ||
async runAngularCli() { | ||
spawn('ng', ['new'], { stdio: 'inherit' }) | ||
spawn('npx', ['@angular/cli', 'new'], { stdio: 'inherit' }) | ||
} | ||
} |
@@ -99,3 +99,3 @@ const Generator = require('yeoman-generator') | ||
case "other": | ||
console.log(`Check https://github.com/CanopyTax/create-single-spa/issues for updates on new frameworks being added to create-single-spa. Feel free to create a new issue if one does not yet exist for the framework you're using.`) | ||
console.log(`Check https://github.com/single-spa/create-single-spa/issues for updates on new frameworks being added to create-single-spa. Feel free to create a new issue if one does not yet exist for the framework you're using.`) | ||
break; | ||
@@ -102,0 +102,0 @@ default: |
@@ -59,4 +59,4 @@ const Generator = require('yeoman-generator') | ||
this.fs.copyTpl( | ||
this.templatePath('jest.config.json'), | ||
this.destinationPath('jest.config.json'), | ||
this.templatePath('jest.config.js'), | ||
this.destinationPath('jest.config.js'), | ||
templateOptions | ||
@@ -63,0 +63,0 @@ ) |
@@ -19,4 +19,6 @@ { | ||
"@babel/core": "^7.7.5", | ||
"@babel/plugin-transform-runtime": "^7.8.3", | ||
"@babel/preset-env": "^7.7.6", | ||
"@babel/preset-react": "^7.7.4", | ||
"@babel/runtime": "^7.8.7", | ||
"@testing-library/react": "^9.4.0", | ||
@@ -23,0 +25,0 @@ "@types/jest": "^24.0.23", |
@@ -45,2 +45,3 @@ const Generator = require('yeoman-generator') | ||
message: "Organization name (use lowercase and dashes)", | ||
default: "org-name" | ||
}, | ||
@@ -53,3 +54,3 @@ ]) | ||
templateOptions, | ||
{delimiter: '?'} | ||
{ delimiter: '?' } | ||
) | ||
@@ -61,3 +62,3 @@ | ||
templateOptions, | ||
{delimiter: '?'} | ||
{ delimiter: '?' } | ||
) | ||
@@ -69,3 +70,3 @@ | ||
templateOptions, | ||
{delimiter: '?'} | ||
{ delimiter: '?' } | ||
) | ||
@@ -77,3 +78,3 @@ | ||
templateOptions, | ||
{delimiter: '?'} | ||
{ delimiter: '?' } | ||
) | ||
@@ -95,2 +96,2 @@ } | ||
} | ||
} | ||
} |
@@ -16,3 +16,5 @@ { | ||
"@babel/core": "^7.7.4", | ||
"@babel/plugin-transform-runtime": "^7.8.3", | ||
"@babel/preset-env": "^7.7.4", | ||
"@babel/runtime": "^7.8.7", | ||
"@types/systemjs": "^6.1.0", | ||
@@ -19,0 +21,0 @@ "babel-eslint": "^11.0.0-beta.2", |
@@ -59,4 +59,4 @@ const Generator = require('yeoman-generator') | ||
this.fs.copyTpl( | ||
this.templatePath('jest.config.json'), | ||
this.destinationPath('jest.config.json'), | ||
this.templatePath('jest.config.js'), | ||
this.destinationPath('jest.config.js'), | ||
templateOptions | ||
@@ -63,0 +63,0 @@ ) |
@@ -19,3 +19,5 @@ { | ||
"@babel/core": "^7.7.5", | ||
"@babel/plugin-transform-runtime": "^7.8.3", | ||
"@babel/preset-env": "^7.7.6", | ||
"@babel/runtime": "^7.8.7", | ||
"@types/jest": "^24.0.23", | ||
@@ -22,0 +24,0 @@ "babel-eslint": "^11.0.0-beta.2", |
@@ -6,4 +6,4 @@ const Generator = require('yeoman-generator') | ||
async runVueCli() { | ||
spawn('vue', ['create', '.'], { stdio: 'inherit' }) | ||
spawn('npx', ['@vue/cli', 'create', '.'], { stdio: 'inherit' }) | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
23583
511