quankee-framework-common-ts 1.6.4 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/angular.json +33 -0
- package/package.json +2 -2
- package/projects/quankee-framework-geo/ng-package.json +7 -0
- package/projects/quankee-framework-geo/package.json +12 -0
- package/projects/quankee-framework-identity-document/package.json +1 -1
- package/projects/quankee-framework-interceptor/package.json +1 -1
- package/projects/quankee-framework-keycloak/package.json +1 -1
- package/projects/quankee-framework-language/package.json +1 -1
- package/projects/quankee-framework-report/package.json +1 -1
- package/projects/quankee-framework-response/package.json +1 -1
- package/projects/quankee-framework-user/package.json +1 -1
- package/publish-all.js +2 -1
package/README.md
CHANGED
|
@@ -34,6 +34,9 @@ ng generate library quankee-framework-report
|
|
|
34
34
|
# create lib for identity documents
|
|
35
35
|
ng generate library quankee-framework-identity-document
|
|
36
36
|
|
|
37
|
+
# create lib for geo
|
|
38
|
+
ng generate library quankee-framework-geo
|
|
39
|
+
|
|
37
40
|
# Keycloak
|
|
38
41
|
npm install keycloak-angular keycloak-js
|
|
39
42
|
|
package/angular.json
CHANGED
|
@@ -233,6 +233,39 @@
|
|
|
233
233
|
}
|
|
234
234
|
}
|
|
235
235
|
}
|
|
236
|
+
},
|
|
237
|
+
"quankee-framework-geo": {
|
|
238
|
+
"projectType": "library",
|
|
239
|
+
"root": "projects/quankee-framework-geo",
|
|
240
|
+
"sourceRoot": "projects/quankee-framework-geo/src",
|
|
241
|
+
"prefix": "lib",
|
|
242
|
+
"architect": {
|
|
243
|
+
"build": {
|
|
244
|
+
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
245
|
+
"options": {
|
|
246
|
+
"project": "projects/quankee-framework-geo/ng-package.json"
|
|
247
|
+
},
|
|
248
|
+
"configurations": {
|
|
249
|
+
"production": {
|
|
250
|
+
"tsConfig": "projects/quankee-framework-geo/tsconfig.lib.prod.json"
|
|
251
|
+
},
|
|
252
|
+
"development": {
|
|
253
|
+
"tsConfig": "projects/quankee-framework-geo/tsconfig.lib.json"
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
"defaultConfiguration": "production"
|
|
257
|
+
},
|
|
258
|
+
"test": {
|
|
259
|
+
"builder": "@angular-devkit/build-angular:karma",
|
|
260
|
+
"options": {
|
|
261
|
+
"tsConfig": "projects/quankee-framework-geo/tsconfig.spec.json",
|
|
262
|
+
"polyfills": [
|
|
263
|
+
"zone.js",
|
|
264
|
+
"zone.js/testing"
|
|
265
|
+
]
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
}
|
|
236
269
|
}
|
|
237
270
|
},
|
|
238
271
|
"cli": {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quankee-framework-common-ts",
|
|
3
3
|
"description": "Quankee Framework Typescript Lib",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.7.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"email": "info@quankee.co.mz",
|
|
7
7
|
"name": "Quankee Software, Lda",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"scripts": {
|
|
18
18
|
"ng": "ng",
|
|
19
19
|
"start": "ng serve",
|
|
20
|
-
"build": "ng build quankee-framework-response && ng build quankee-framework-language && ng build quankee-framework-keycloak && ng build quankee-framework-interceptor && ng build quankee-framework-user && ng build quankee-framework-report && ng build quankee-framework-identity-document",
|
|
20
|
+
"build": "ng build quankee-framework-response && ng build quankee-framework-language && ng build quankee-framework-keycloak && ng build quankee-framework-interceptor && ng build quankee-framework-user && ng build quankee-framework-report && ng build quankee-framework-identity-document && ng build quankee-framework-geo",
|
|
21
21
|
"watch": "ng build --watch --configuration development",
|
|
22
22
|
"test": "echo",
|
|
23
23
|
"publish:libs": "node publish-all.js",
|
package/publish-all.js
CHANGED