Skip to content

Commit

Permalink
chore(release): 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kolkov committed Jun 15, 2021
1 parent 92ea55b commit ab69092
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ script:
- npm run lint:lib
- npm run test-ci
- codecov
- npm run build:lib
- npm run build-prod:lib
before_deploy:
- npm run copy:readme
- npm run copy:changelog
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kolkov/ngx-metrika",
"version": "0.0.0",
"version": "0.5.3",
"scripts": {
"ng": "ng",
"start": "ng serve ngx-metrika-app",
Expand All @@ -11,6 +11,7 @@
"build-watch:lib": "ng build @kolkov/ngx-metrika --watch",
"test:lib": "ng test @kolkov/ngx-metrika",
"build:lib": "ng build @kolkov/ngx-metrika",
"build-prod:lib": "ng build @kolkov/ngx-metrika --prod",
"publish:lib": "npm run copy:readme && npm run copy:changelog && npm run copy:license && npm publish ./dist/kolkov/ngx-metrika",
"copy:readme": "cpx README.md ./dist/kolkov/ngx-metrika",
"copy:changelog": "cpx CHANGELOG.md ./dist/kolkov/ngx-metrika",
Expand Down
8 changes: 4 additions & 4 deletions projects/ngx-metrika/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@kolkov/ngx-metrika",
"version": "0.5.2",
"version": "0.5.3",
"author": "Andrey Kolkov <a.kolkov@gmail.com>",
"repository": "https://github.com/kolkov/ngx-metrika",
"license": "MIT",
"description": "A simple Yandex Mertika (Яндекс Метрика) package for Angular 6+.",
"private": false,
"peerDependencies": {
"@angular/common": ">6.0.0",
"@angular/core": ">6.0.0",
"@angular/router": ">6.0.0"
"@angular/common": ">=8.0.0 <13",
"@angular/core": ">=8.0.0 <13",
"@angular/router": ">=8.0.0 <13"
},
"dependencies": {
"tslib": "^2.0.0"
Expand Down
5 changes: 3 additions & 2 deletions projects/ngx-metrika/tsconfig.lib.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"declarationMap": false
},
"angularCompilerOptions": {
"enableIvy": false
"enableIvy": false,
"compilationMode": "partial"
}
}
}

0 comments on commit ab69092

Please sign in to comment.