-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(module): update to latest build structure
- Loading branch information
Showing
119 changed files
with
1,521 additions
and
1,100 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"project": { | ||
"name": "ng2-handsontable" | ||
}, | ||
"apps": [ | ||
{ | ||
"root": "demo/src", | ||
"outDir": "demo/dist", | ||
"assets": [ | ||
"assets", | ||
"favicon.ico" | ||
], | ||
"index": "index.html", | ||
"main": "main.ts", | ||
"test": "../../scripts/test.ts", | ||
"tsconfig": "tsconfig.json", | ||
"prefix": "", | ||
"mobile": false, | ||
"styles": [ | ||
], | ||
"scripts": [ | ||
"../../node_modules/handsontable/dist/handsontable.full.js", | ||
"../../node_modules/chroma-js/chroma.js" | ||
], | ||
"environmentSource": "environments/environment.ts", | ||
"environments": { | ||
"dev": "environments/environment.ts", | ||
"prod": "environments/environment.prod.ts" | ||
} | ||
} | ||
], | ||
"addons": [], | ||
"packages": [], | ||
"e2e": { | ||
"protractor": { | ||
"config": "protractor.conf.js" | ||
} | ||
}, | ||
"test": { | ||
"karma": { | ||
"config": "karma.conf.js" | ||
} | ||
}, | ||
"defaults": { | ||
"styleExt": "css", | ||
"prefixInterfaces": false, | ||
"inline": { | ||
"style": false, | ||
"template": false | ||
}, | ||
"spec": { | ||
"class": false, | ||
"component": true, | ||
"directive": true, | ||
"module": false, | ||
"pipe": true, | ||
"service": true | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,25 +1,39 @@ | ||
# Dependency directory | ||
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git | ||
/node_modules | ||
/demo/lib | ||
npm-debug.log | ||
/bower_components | ||
yarn.lock | ||
|
||
# IDEs | ||
# IDEs and editors | ||
/.idea | ||
/.vscode | ||
.project | ||
.classpath | ||
*.launch | ||
.settings/ | ||
|
||
# misc | ||
/.sass-cache | ||
/connect.lock | ||
/coverage/* | ||
/libpeerconnection.log | ||
npm-debug.log | ||
|
||
# ignore build and dist for now | ||
/build | ||
/dist | ||
/temp | ||
/demo/dist | ||
/demo/temp | ||
/logs | ||
|
||
/demo/**/*.js | ||
/demo/**/*.js.map | ||
!/demo/external/**/*.js | ||
/components/**/*.js | ||
/components/**/*.js.map | ||
#System Files | ||
.DS_Store | ||
Thumbs.db | ||
|
||
/logs | ||
|
||
# AoT generated files | ||
/**/*.metadata.json | ||
/**/*.ngfactory.ts | ||
/demo/e2e/*.js | ||
/demo/e2e/*.map | ||
src/**/*.js | ||
src/**/*.map | ||
scripts/**/*.js | ||
scripts/**/*.map |
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 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 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
Empty file.
This file was deleted.
Oops, something went wrong.
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,2 @@ | ||
# Created by .ignore support plugin (hsz.mobi) | ||
src/api-doc.json |
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,7 @@ | ||
module.exports = { | ||
"port": 4200, | ||
"server": { | ||
"baseDir": "./demo/dist", | ||
middleware : { 1 : require('compression')()} | ||
} | ||
}; |
Oops, something went wrong.