Skip to content

Commit ab69092

Browse files
committed
chore(release): 0.5.3
1 parent 92ea55b commit ab69092

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ script:
1919
- npm run lint:lib
2020
- npm run test-ci
2121
- codecov
22-
- npm run build:lib
22+
- npm run build-prod:lib
2323
before_deploy:
2424
- npm run copy:readme
2525
- npm run copy:changelog

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kolkov/ngx-metrika",
3-
"version": "0.0.0",
3+
"version": "0.5.3",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve ngx-metrika-app",
@@ -11,6 +11,7 @@
1111
"build-watch:lib": "ng build @kolkov/ngx-metrika --watch",
1212
"test:lib": "ng test @kolkov/ngx-metrika",
1313
"build:lib": "ng build @kolkov/ngx-metrika",
14+
"build-prod:lib": "ng build @kolkov/ngx-metrika --prod",
1415
"publish:lib": "npm run copy:readme && npm run copy:changelog && npm run copy:license && npm publish ./dist/kolkov/ngx-metrika",
1516
"copy:readme": "cpx README.md ./dist/kolkov/ngx-metrika",
1617
"copy:changelog": "cpx CHANGELOG.md ./dist/kolkov/ngx-metrika",

projects/ngx-metrika/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@kolkov/ngx-metrika",
3-
"version": "0.5.2",
3+
"version": "0.5.3",
44
"author": "Andrey Kolkov <[email protected]>",
55
"repository": "https://github.com/kolkov/ngx-metrika",
66
"license": "MIT",
77
"description": "A simple Yandex Mertika (Яндекс Метрика) package for Angular 6+.",
88
"private": false,
99
"peerDependencies": {
10-
"@angular/common": ">6.0.0",
11-
"@angular/core": ">6.0.0",
12-
"@angular/router": ">6.0.0"
10+
"@angular/common": ">=8.0.0 <13",
11+
"@angular/core": ">=8.0.0 <13",
12+
"@angular/router": ">=8.0.0 <13"
1313
},
1414
"dependencies": {
1515
"tslib": "^2.0.0"

projects/ngx-metrika/tsconfig.lib.prod.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"declarationMap": false
55
},
66
"angularCompilerOptions": {
7-
"enableIvy": false
7+
"enableIvy": false,
8+
"compilationMode": "partial"
89
}
9-
}
10+
}

0 commit comments

Comments
 (0)