@formio/reporting 2.1.2 → 2.1.3
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 +5 -4
- package/reporting.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formio/reporting",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.3",
|
|
4
4
|
"description": "Reporting components for form.io",
|
|
5
5
|
"main": "reporting.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -67,10 +67,10 @@
|
|
|
67
67
|
"webpack-node-externals": "^3.0.0",
|
|
68
68
|
"webpack-obfuscator": "^3.5.1",
|
|
69
69
|
"@formio/license": "^2.0.1",
|
|
70
|
-
"@formio/js": "^5.2.
|
|
70
|
+
"@formio/js": "^5.2.4"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
|
-
"@formio/js": "^5.2.
|
|
73
|
+
"@formio/js": "^5.2.4"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
76
|
"file-saver": "^2.0.5",
|
|
@@ -78,10 +78,11 @@
|
|
|
78
78
|
},
|
|
79
79
|
"scripts": {
|
|
80
80
|
"watch": "tsc -w",
|
|
81
|
+
"precommit": "gulp report-config-template",
|
|
81
82
|
"build:style": "sass ./src/sass/reporting.scss ./dist/reporting.css",
|
|
82
83
|
"build:dist": "rm -rf lib && rm -rf dist && gulp licenseCheck && tsc && gulp templates && webpack --config=config/webpack.dist.js && npm run build:style",
|
|
83
84
|
"build:dev": "rm -rf lib && rm -rf dist && gulp licenseCheck && tsc && gulp templates && webpack --config=config/webpack.dev.js && gulp changeEntry && npm run build:style",
|
|
84
|
-
"build:portal": "rm -rf lib && rm -rf dist && rm -f build/reporting.css && gulp licenseCheck:noCheck && tsc && gulp templates &&
|
|
85
|
+
"build:portal": "rm -rf lib && rm -rf dist && rm -f build/reporting.css && gulp licenseCheck:noCheck && tsc && gulp templates && webpack --config=config/webpack.portal.js && npm run build:style",
|
|
85
86
|
"build:vm": "rm -rf lib && rm -f dist/reporting.vm.js && gulp licenseCheck:noCheck && tsc && gulp templates && webpack --config=config/webpack.vm.js",
|
|
86
87
|
"build": "npm run build:portal && npm run build:vm",
|
|
87
88
|
"lint": "tslint -p ."
|