-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split into create-modular-app and modular-scripts packages
Also, generate the widgets map at transpilation time.
- Loading branch information
Showing
23 changed files
with
808 additions
and
364 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "create-modular-app", | ||
"version": "0.0.0", | ||
"license": "Apache-2.0", | ||
"bin": { | ||
"create-modular-app": "build/cli.js" | ||
}, | ||
"engines": { | ||
"node": ">=10" | ||
}, | ||
"scripts": { | ||
"clean": "rimraf build", | ||
"prebuild": "yarn clean", | ||
"build": "babel --root-mode upward src --out-dir build --extensions .ts --ignore *.test.ts" | ||
}, | ||
"dependencies": { | ||
"chalk": "^4.1.0", | ||
"execa": "^4.0.2", | ||
"fs-extra": "^9.0.1" | ||
}, | ||
"devDependencies": { | ||
"@types/fs-extra": "^5.0.2", | ||
"@types/node": "*", | ||
"rimraf": "^3.0.2" | ||
} | ||
} |
File renamed without changes.
Oops, something went wrong.