Const FILES_TO_CREATE
FILES_TO_CREATE: object
config/default.ts
config/default.ts: any = require('./dummy-data/default.txt')
package.json
package.json: any = require('./dummy-data/package.txt')
src/app/components/footer.html
src/app/components/footer.html: any = require('./dummy-data/footer.html')
src/app/components/head.html
src/app/components/head.html: any = require('./dummy-data/head.html')
src/app/components/navbar.html
src/app/components/navbar.html: any = require('./dummy-data/navbar.html')
src/app/pages/index.html
src/app/pages/index.html: any = require('./dummy-data/index.html')
src/app/scripts/main.ts
src/app/scripts/main.ts: any = require('./dummy-data/scripts.txt')
src/app/styles/styles.scss
src/app/styles/styles.scss: any = require('./dummy-data/styles.scss')
List of files to create in new projects as examples. The key is the relative path from
base
. The contents are added withrequire
from the source files.