forked from valor-software/ng2-file-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(package): upgrade to ng v2.3+ (valor-software#574)
- Loading branch information
Showing
75 changed files
with
3,848 additions
and
3,256 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,38 +1,38 @@ | ||
# Dependency directory | ||
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git | ||
/node_modules | ||
npm-debug.log | ||
/bower_components | ||
|
||
# type script artifacts | ||
/typings | ||
# IDEs and editors | ||
/.idea | ||
/.vscode | ||
.project | ||
.classpath | ||
*.launch | ||
.settings/ | ||
|
||
# WebStorm | ||
.idea | ||
.vscode | ||
# misc | ||
/.sass-cache | ||
/connect.lock | ||
/coverage | ||
/libpeerconnection.log | ||
npm-debug.log | ||
|
||
# ignore build and dist for now | ||
/bundles | ||
/demo-build | ||
/dist | ||
/coverage | ||
/ts | ||
|
||
# ignore incline compiling | ||
/demo/**/*.js | ||
/demo/**/*.d.ts | ||
!/demo/custom-typings.d.ts | ||
/demo/**/*.js.map | ||
/components/**/*.js | ||
/components/**/*.d.ts | ||
/components/**/*.js.map | ||
ng2-file-upload.js | ||
ng2-file-upload.d.ts | ||
ng2-file-upload.js.map | ||
/temp | ||
/demo/dist | ||
/demo/temp | ||
/logs | ||
|
||
!/demo/components/file-upload/file-catcher.js | ||
#System Files | ||
.DS_Store | ||
Thumbs.db | ||
|
||
|
||
# AoT generated files | ||
factories | ||
/**/*.metadata.json | ||
/**/*.ngfactory.ts | ||
/demo/e2e/*.js | ||
/demo/e2e/*.map | ||
src/**/*.js | ||
src/**/*.map | ||
scripts/**/*.js | ||
scripts/**/*.map |
This file was deleted.
Oops, something went wrong.
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
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,7 +1,7 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2015 Dmitriy Shekhovtsov <[email protected]> | ||
Copyright (c) 2015 Valor Software | ||
Copyright (c) 2015-2017 Dmitriy Shekhovtsov <[email protected]> | ||
Copyright (c) 2015-1017 Valor Software | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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,57 @@ | ||
{ | ||
"project": { | ||
"name": "ng2-file-upload" | ||
}, | ||
"apps": [ | ||
{ | ||
"root": "demo/src", | ||
"outDir": "demo/dist", | ||
"assets": [ | ||
"assets" | ||
], | ||
"index": "index.html", | ||
"main": "main.ts", | ||
"test": "../../scripts/test.ts", | ||
"tsconfig": "tsconfig.json", | ||
"prefix": "", | ||
"mobile": false, | ||
"styles": [ | ||
], | ||
"scripts": [ | ||
], | ||
"environments": { | ||
"source": "environments/environment.ts", | ||
"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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Created by .ignore support plugin (hsz.mobi) | ||
src/api-doc.json |
Oops, something went wrong.