chore(bump): updated versions #1177

Merged
SvetlanaMuravlova merged 29 commits from update-angular into development 2021-09-03 10:44:45 +00:00
4 changed files with 21 additions and 10 deletions
Showing only changes of commit 16078f57c3 - Show all commits

View File

@@ -13,6 +13,11 @@
"options": { "options": {
"tsConfig": "src/tsconfig.json", "tsConfig": "src/tsconfig.json",
"project": "src/ng-package.json" "project": "src/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "src/tsconfig.prod.json"
}
} }
} }
} }
@@ -29,9 +34,7 @@
"index": "demo/src/index.html", "index": "demo/src/index.html",
"main": "demo/src/main.ts", "main": "demo/src/main.ts",
"tsConfig": "demo/src/tsconfig.json", "tsConfig": "demo/src/tsconfig.json",
"assets": [ "assets": ["demo/src/assets"],
"demo/src/assets"
],
"styles": [], "styles": [],
"scripts": [] "scripts": []
}, },
@@ -91,9 +94,7 @@
"demo/src/tsconfig.json", "demo/src/tsconfig.json",
"test/tsconfig.json" "test/tsconfig.json"
], ],
"exclude": [ "exclude": ["**/node_modules/**"]
"**/node_modules/**"
]
} }
} }
} }

6
package-lock.json generated
View File

@@ -10148,9 +10148,9 @@
} }
}, },
"gh-pages": { "gh-pages": {
"version": "3.2.0", "version": "3.2.2",
"resolved": "https://registry.npmjs.org/gh-pages/-/gh-pages-3.2.0.tgz", "resolved": "https://registry.npmjs.org/gh-pages/-/gh-pages-3.2.2.tgz",
"integrity": "sha512-VQTwyRtxoaId0YmDXdC/G854dojpwTuOdpZUL3PGG6WQZvSoGVD8ggedKARZltixIREMezoDywE+g3g2paLxPw==", "integrity": "sha512-szdkmGpVqMBUZkjgsEXQm5wkLvx/XNvWf3HzL+2ETpLtpaXvSvIzpNgLiiojDzxmbFDf3M5CFK7p/3eYi8U83A==",
"dev": true, "dev": true,
"requires": { "requires": {
"async": "^2.6.1", "async": "^2.6.1",

View File

@@ -5,7 +5,7 @@
"description": "Angular file upload directives", "description": "Angular file upload directives",
"scripts": { "scripts": {
"lite-server": "lite-server -c demo/bs-config.json", "lite-server": "lite-server -c demo/bs-config.json",
"demo.serve": "run-s build link demo.build lite-server", "demo.serve": "run-s build-prod link demo.build lite-server",
"demo.gh-pages": "run-s build demo.build demo.deploy", "demo.gh-pages": "run-s build demo.build demo.deploy",
"demo.build": "ng build ng2-file-upload-demo --prod", "demo.build": "ng build ng2-file-upload-demo --prod",
"demo.deploy": "gh-pages -d demo/dist", "demo.deploy": "gh-pages -d demo/dist",
@@ -15,6 +15,7 @@
"flow.changelog": "conventional-changelog -i CHANGELOG.md -s -p angular", "flow.changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"flow.github-release": "conventional-github-releaser -p angular", "flow.github-release": "conventional-github-releaser -p angular",
"build": "ng build ng2-file-upload", "build": "ng build ng2-file-upload",
"build-prod": "ng build ng2-file-upload --prod",
"build.watch": "ng build ng2-file-upload --watch", "build.watch": "ng build ng2-file-upload --watch",
"start": "ng serve ng2-file-upload-demo --aot", "start": "ng serve ng2-file-upload-demo --aot",
"pretest": "run-s lint build link", "pretest": "run-s lint build link",

9
src/tsconfig.prod.json Normal file
View File

@@ -0,0 +1,9 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"declarationMap": false
},
"angularCompilerOptions": {
"enableIvy": false
}
}