quankee-framework-common-ts 1.7.2 → 1.8.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/package.json +1 -1
- 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-reference/ng-package.json +7 -0
- package/projects/quankee-framework-reference/package.json +12 -0
- 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
|
@@ -37,6 +37,9 @@ ng generate library quankee-framework-identity-document
|
|
|
37
37
|
# create lib for geo
|
|
38
38
|
ng generate library quankee-framework-geo
|
|
39
39
|
|
|
40
|
+
# create lib for geo
|
|
41
|
+
ng generate library quankee-framework-reference
|
|
42
|
+
|
|
40
43
|
# Keycloak
|
|
41
44
|
npm install keycloak-angular keycloak-js
|
|
42
45
|
|
package/angular.json
CHANGED
|
@@ -266,6 +266,39 @@
|
|
|
266
266
|
}
|
|
267
267
|
}
|
|
268
268
|
}
|
|
269
|
+
},
|
|
270
|
+
"quankee-framework-reference": {
|
|
271
|
+
"projectType": "library",
|
|
272
|
+
"root": "projects/quankee-framework-reference",
|
|
273
|
+
"sourceRoot": "projects/quankee-framework-reference/src",
|
|
274
|
+
"prefix": "lib",
|
|
275
|
+
"architect": {
|
|
276
|
+
"build": {
|
|
277
|
+
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
278
|
+
"options": {
|
|
279
|
+
"project": "projects/quankee-framework-reference/ng-package.json"
|
|
280
|
+
},
|
|
281
|
+
"configurations": {
|
|
282
|
+
"production": {
|
|
283
|
+
"tsConfig": "projects/quankee-framework-reference/tsconfig.lib.prod.json"
|
|
284
|
+
},
|
|
285
|
+
"development": {
|
|
286
|
+
"tsConfig": "projects/quankee-framework-reference/tsconfig.lib.json"
|
|
287
|
+
}
|
|
288
|
+
},
|
|
289
|
+
"defaultConfiguration": "production"
|
|
290
|
+
},
|
|
291
|
+
"test": {
|
|
292
|
+
"builder": "@angular-devkit/build-angular:karma",
|
|
293
|
+
"options": {
|
|
294
|
+
"tsConfig": "projects/quankee-framework-reference/tsconfig.spec.json",
|
|
295
|
+
"polyfills": [
|
|
296
|
+
"zone.js",
|
|
297
|
+
"zone.js/testing"
|
|
298
|
+
]
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
}
|
|
269
302
|
}
|
|
270
303
|
},
|
|
271
304
|
"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.8.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 && ng build quankee-framework-geo",
|
|
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 && ng build quankee-framework-reference",
|
|
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