Skip to content

Core - update : angular v16 #100

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jun 15, 2023
Merged
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
14 changes: 12 additions & 2 deletions angular-code-input/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
{
"name": "angular-code-input",
"version": "1.6.0",
"version": "1.7.0",
"description": "Code or pin code input for Angular 7 - 12, 14 + / Ionic 4, 5 + projects",
"keywords": ["angular", "pincode", "angular-pincode", "otp", "code-input", "angular-otp", "ionic-otp", "ionic-code-input", "ionic-pincode"],
"keywords": [
"angular",
"pincode",
"angular-pincode",
"otp",
"code-input",
"angular-otp",
"ionic-otp",
"ionic-code-input",
"ionic-pincode"
],
"author": "Alexander Dmitrenko",
"license": "MIT",
"repository": {
Expand Down
6 changes: 0 additions & 6 deletions angular-code-input/src/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,8 @@ import {
platformBrowserDynamicTesting
} from '@angular/platform-browser-dynamic/testing';

declare const require: any;

// First, initialize the Angular testing environment.
getTestBed().initTestEnvironment(
BrowserDynamicTestingModule,
platformBrowserDynamicTesting()
);
// Then we find all the tests.
const context = require.context('./', true, /\.spec\.ts$/);
// And load the modules.
context.keys().map(context);
1 change: 0 additions & 1 deletion angular-code-input/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/lib",
"target": "es2015",
"module": "es2015",
"moduleResolution": "node",
"declaration": true,
Expand Down
10 changes: 10 additions & 0 deletions angular-code-input/tsconfig.lib.prod.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"extends": "./tsconfig.lib.json",
"compilerOptions": {
"declarationMap": false
},
"angularCompilerOptions": {
"compilationMode": "partial"
}
}
10 changes: 7 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
"options": {
"tsConfig": "angular-code-input/tsconfig.lib.json",
"project": "angular-code-input/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "angular-code-input/tsconfig.lib.prod.json"
}
}
},
"test": {
Expand All @@ -38,6 +43,5 @@
}
}
}
},
"defaultProject": "angular-code-input"
}
}
}
Loading