Skip to content

Commit

Permalink
Beginnings of create-single-spa and generator-single-spa (single-spa#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldenning authored Jul 29, 2019
1 parent b2e6583 commit 14d83a6
Show file tree
Hide file tree
Showing 11 changed files with 4,606 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
.DS_Store
6 changes: 6 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"packages": [
"packages/*"
],
"version": "0.0.0"
}
7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "root",
"private": true,
"devDependencies": {
"lerna": "^3.15.0"
}
}
8 changes: 8 additions & 0 deletions packages/create-single-spa/bin/create-single-spa.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env node

const yeoman = require('yeoman-environment')
const argv = require('yargs').argv

const env = yeoman.createEnv()
env.registerStub(require('generator-single-spa'), 'single-spa')
env.run('single-spa', argv)
Loading

0 comments on commit 14d83a6

Please sign in to comment.