metag-sdk-ionic 1.1.37 → 1.1.38
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/package.json +2 -2
- package/scripts/postinstall.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "metag-sdk-ionic",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.38",
|
|
4
4
|
"author": "FGE",
|
|
5
5
|
"description": "SDK de MetaG para validación de documentos y prueba de vida con Angular e Ionic.",
|
|
6
6
|
"homepage": "https://ionicframework.com/",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"lint": "ng lint",
|
|
23
23
|
"build": "ngc tsconfig.lib.json && mkdir -p ./dist/assets/ && cp -R ./src/assets/* ./dist/assets/",
|
|
24
24
|
"prepare": "node scripts/postinstall.js",
|
|
25
|
-
"postinstall": "node scripts/postinstall.js
|
|
25
|
+
"postinstall": "node scripts/postinstall.js",
|
|
26
26
|
"publish:npm": "npm run build && npm publish --access=public"
|
|
27
27
|
},
|
|
28
28
|
"keywords": [
|
package/scripts/postinstall.js
CHANGED
|
@@ -3,7 +3,7 @@ if (typeof process !== 'undefined' && process.versions && process.versions.node)
|
|
|
3
3
|
const fse = require('fs-extra');
|
|
4
4
|
|
|
5
5
|
const distImagesPath = path.resolve(__dirname, '../dist/assets/imagesIdvision');
|
|
6
|
-
const projectAssetsPath = path.resolve(process.cwd(), '
|
|
6
|
+
const projectAssetsPath = path.resolve(process.cwd(), '../src/assets/imagesIdvision');
|
|
7
7
|
const distThemePath = path.resolve(__dirname, '../src/theme/variables.scss');
|
|
8
8
|
const projectThemePath = path.resolve(process.cwd(), './src/theme/variables.scss');
|
|
9
9
|
|