Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ expamples/package-lock.json
*.iml

# misc
/.angular/cache
*.js
*.map
*.d.ts
Expand Down
3 changes: 1 addition & 2 deletions examples/src/polyfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@
/***************************************************************************************************
* Zone JS is required by default for Angular itself.
*/
import 'zone.js/dist/zone'; // Included with Angular CLI.

import "zone.js"; // Included with Angular CLI.

/***************************************************************************************************
* APPLICATION IMPORTS
Expand Down
10 changes: 5 additions & 5 deletions examples/src/test.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// This file is required by karma.conf.js and loads recursively all the .spec and framework files

import 'zone.js/dist/zone-testing';
import { getTestBed } from '@angular/core/testing';
import "zone.js/testing";
import { getTestBed } from "@angular/core/testing";
import {
BrowserDynamicTestingModule,
platformBrowserDynamicTesting
} from '@angular/platform-browser-dynamic/testing';
platformBrowserDynamicTesting,
} from "@angular/platform-browser-dynamic/testing";

declare const require: any;

Expand All @@ -15,6 +15,6 @@ getTestBed().initTestEnvironment(
platformBrowserDynamicTesting()
);
// Then we find all the tests.
const context = require.context('./', true, /\.spec\.ts$/);
const context = require.context("./", true, /\.spec\.ts$/);
// And load the modules.
context.keys().map(context);
12 changes: 5 additions & 7 deletions ng-package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"$schema": "./node_modules/ng-packagr/ng-package.schema.json",
"name": "ngx-responsive",
"version": "9.0.0",
"lib": {
"entryFile": "src/index.ts"
}
}
"$schema": "./node_modules/ng-packagr/ng-package.schema.json",
"lib": {
"entryFile": "src/public_api.ts"
}
}
64 changes: 26 additions & 38 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"name": "ngx-responsive",
"version": "9.0.3",
"version": "9.0.5",
"description": "Superset of RESPONSIVE DIRECTIVES to show or hide items according to the size of the device screen and another features in Angular 9",
"scripts": {
"start": "ng serve --aot",
Expand All @@ -13,12 +12,6 @@
"lint": "ng lint",
"e2e": "ng e2e"
},
"ngPackage": {
"lib": {
"entryFile": "src/index.ts"
}
},
"typings": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ManuCutillas/ngx-responsive.git"
Expand Down Expand Up @@ -70,38 +63,33 @@
},
"homepage": "https://github.com/ManuCutillas/ngx-responsive",
"private": false,
"peerDependencies": {
"@angular/common": "^9.1.6",
"@angular/core": "^9.1.6"
},
"peerDependencies": {},
"devDependencies": {
"@angular/animations": "^9.1.6",
"@angular/cli": "^9.0.1",
"@angular/common": "^9.1.6",
"@angular/compiler": "^9.1.6",
"@angular/compiler-cli": "^9.1.6",
"@angular/core": "^9.1.6",
"@angular/language-service": "^9.1.6",
"@angular/platform-browser": "^9.1.6",
"@angular/platform-browser-dynamic": "^9.1.6",
"@angular/platform-server": "^9.1.6",
"@angular-devkit/build-angular": "^16.2.13",
"@angular/animations": "^16.2.12",
"@angular/cli": "^16.2.13",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/compiler-cli": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/language-service": "^16.2.12",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/platform-server": "^16.2.12",
"@compodoc/compodoc": "1.1.11",
"@nguniversal/express-engine": "^9.1.1",
"@nguniversal/module-map-ngfactory-loader": "^8.2.6",
"@nguniversal/express-engine": "^16.2.0",
"@types/node": "~8.9.4",
"copyfiles": "^2.2.0",
"copyfiles": "^2.4.1",
"cpr": "^3.0.1",
"del-cli": "^3.0.0",
"codelyzer": "^5.2.2",
"ng-packagr": "^9.1.3",
"onchange": "^7.0.2",
"protractor": "~5.4.4",
"source-map-explorer": "^2.4.2",
"ts-loader": "^6.2.1",
"tsickle": "^0.38.1",
"ts-node": "~8.10.1",
"tslint": "~6.1.2",
"typescript": "~3.8.3",
"zone.js": "~0.10.3"
"del-cli": "^5.0.0",
"ng-packagr": "^16.2.3",
"onchange": "^7.1.0",
"protractor": "~7.0.0",
"source-map-explorer": "^2.5.2",
"ts-loader": "^9.3.1",
"ts-node": "~10.9.1",
"tslint": "~6.1.3",
"typescript": "~4.9.5",
"zone.js": "~0.13.3"
}
}
}
Loading