diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 79141b6..0000000 --- a/.travis.yml +++ /dev/null @@ -1,16 +0,0 @@ -language: node_js -node_js: - - 8 - - 9 - - 10 - - 11 - -services: - - xvfb - -cache: - yarn: true - directories: - - node_modules - -after_success: npm run cover diff --git a/README.md b/README.md index 0bdfab0..8bca98d 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,8 @@ -[![NPM Version](https://img.shields.io/npm/v/angular-pipes.svg)](https://npmjs.org/package/angular-pipes) -[![Build Status](https://travis-ci.org/fknop/angular-pipes.svg?branch=master)](https://travis-ci.org/fknop/angular-pipes) -[![Coverage Status](https://coveralls.io/repos/github/fknop/angular-pipes/badge.svg?branch=master)](https://coveralls.io/github/fknop/angular-pipes?branch=master) -[![Downloads](https://img.shields.io/npm/dt/angular-pipes.svg)](https://npmjs.org/package/angular-pipes) -[![Downloads](https://img.shields.io/npm/dm/angular-pipes.svg)](https://npmjs.org/package/angular-pipes) +[![NPM Version](https://img.shields.io/npm/v/ngx2-pipes.svg)](https://www.npmjs.com/package/ngx2-pipes) +[![Downloads](https://img.shields.io/npm/dm/ngx2-pipes.svg)](https://npmjs.org/package/ngx2-pipes) + +## This is a fork of the original repo and maintained, once the original author agrees to release the new version, the fork will be deleted. and the original repo will be updated. I will wait for few month to get the updaet from the original author. There is an issue logged for this https://github.com/fknop/angular-pipes/issues/113. -# Not actively maintained # angular-pipes diff --git a/karma.conf.js b/karma.conf.js index cc0931d..741ebfc 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -15,8 +15,8 @@ module.exports = function(config) { }, frameworks: ['jasmine', 'karma-typescript'], - browsers: ['Firefox'], - plugins: ['karma-jasmine', 'karma-spec-reporter', 'karma-firefox-launcher', 'karma-typescript'], + browsers: ['Chrome'], + plugins: ['karma-jasmine', 'karma-spec-reporter', 'karma-chrome-launcher', 'karma-typescript'], karmaTypescriptConfig: { reports: { diff --git a/package.json b/package.json index b4e211b..e4f1c87 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "angular-pipes", - "version": "10.0.0", + "name": "ngx2-pipes", + "version": "13.0.0", "description": "Angular pipes library", "scripts": { "cover": "cat ./coverage/*/lcovonly | ./node_modules/.bin/coveralls", @@ -11,10 +11,10 @@ "publish-dist": "npm publish dist", "test": "npm run karma" }, - "author": "Florian Knop", + "author": "ngx-builders", "repository": { "type": "git", - "url": "https://github.com/fknop/angular-pipes.git" + "url": "https://github.com/ngx-builders/angular-pipes.git" }, "keywords": [ "ng2", @@ -28,31 +28,33 @@ ], "license": "MIT", "devDependencies": { - "@angular/animations": "^8.1.3", - "@angular/common": "^8.1.3", - "@angular/compiler": "^8.1.3", - "@angular/compiler-cli": "^8.1.3", - "@angular/core": "^8.1.3", - "@angular/platform-browser": "^8.1.3", - "@angular/platform-browser-dynamic": "^8.1.3", - "@angular/platform-server": "^8.1.3", + "@angular/animations": "^13.1.3", + "@angular/cli": "13.1.4", + "@angular/common": "^13.1.3", + "@angular/compiler": "^13.1.3", + "@angular/compiler-cli": "^13.1.3", + "@angular/core": "^13.1.3", + "@angular/platform-browser": "^13.1.3", + "@angular/platform-browser-dynamic": "^13.1.3", + "@angular/platform-server": "^13.1.3", "@types/jasmine": "^3.3.16", "core-js": "^3.1.4", "coveralls": "^3.0.5", - "jasmine-core": "^3.4.0", - "karma": "^4.2.0", - "karma-firefox-launcher": "^1.1.0", - "karma-jasmine": "^2.0.1", - "karma-spec-reporter": "0.0.32", - "karma-typescript": "^4.1.1", - "ng-packagr": "^5.4.3", - "prettier": "^1.18.2", + "jasmine-core": "^4.0.0", + "karma": "^6.3.12", + "karma-chrome-launcher": "^3.1.0", + "karma-firefox-launcher": "^2.1.2", + "karma-jasmine": "^4.0.1", + "karma-spec-reporter": "0.0.33", + "karma-typescript": "^5.5.3", + "ng-packagr": "^13.1.3", + "prettier": "^2.5.1", "reflect-metadata": "^0.1.13", - "rxjs": "^6.5.2", - "tsickle": "^0.36.0", - "tslib": "^1.10.0", - "typescript": "3.5.3", - "zone.js": "~0.9.1" + "rxjs": "^7.5.2", + "tsickle": "^0.46.0", + "tslib": "^2.3.1", + "typescript": "4.5.5", + "zone.js": "~0.11.4" }, "dependencies": {}, "prettier": { diff --git a/tsconfig.json b/tsconfig.json index bf86e67..58efc2e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { - "target": "es5", - "module": "es6", + "target": "ES2017", + "module": "ES2020", "moduleResolution": "node", "sourceMap": true, "emitDecoratorMetadata": true, @@ -12,10 +12,13 @@ "noUnusedParameters": true, "suppressImplicitAnyIndexErrors": false, "declaration": true, - "lib": ["es6", "dom"] + "lib": ["ES2020", "dom"], + "strict":true }, "exclude": ["node_modules", "**/*.spec.ts"], "angularCompilerOptions": { - "skipTemplateCodegen": true + "skipTemplateCodegen": true, + "strictInjectionParameters": true,, + "strictTemplates": true } }