@quadrel-enterprise-ui/browser-check 18.1.1 → 18.1.2
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 +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quadrel-enterprise-ui/browser-check",
|
|
3
|
-
"version": "18.1.
|
|
3
|
+
"version": "18.1.2",
|
|
4
4
|
"description": "Library for checking the browser used and its version",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"brfs": "^2.0.2",
|
|
@@ -13,7 +13,11 @@
|
|
|
13
13
|
"compile": "browserify -t brfs src/browser-check.js -d -s browserCheck -o ../../dist/libs/qd-browser-check/scripts/browser-check.js",
|
|
14
14
|
"minimize": "uglifyjs ../../dist/libs/qd-browser-check/scripts/browser-check.js --ie8 -c -m > ../../dist/libs/qd-browser-check/scripts/browser-check.min.js",
|
|
15
15
|
"copy-sources-to-dist": "cp -r src ../../dist/libs/qd-browser-check/src && cp package.json ../../dist/libs/qd-browser-check/package.json",
|
|
16
|
-
"
|
|
16
|
+
"dist:public": "npm run build-lib:public && npm run copy-sources-to-dist:public",
|
|
17
|
+
"build-lib:public": "npm run compile:public && npm run minimize:public",
|
|
18
|
+
"compile:public": "browserify -t brfs src/browser-check.js -d -s browserCheck -o ../../dist/libs/qd-browser-check-public/scripts/browser-check.js",
|
|
19
|
+
"minimize:public": "uglifyjs ../../dist/libs/qd-browser-check-public/scripts/browser-check.js --ie8 -c -m > ../../dist/libs/qd-browser-check-public/scripts/browser-check.min.js",
|
|
20
|
+
"copy-sources-to-dist:public": "cp -r src ../../dist/libs/qd-browser-check-public/src && cp package.json ../../dist/libs/qd-browser-check-public/package.json"
|
|
17
21
|
},
|
|
18
22
|
"jestSonar": {
|
|
19
23
|
"reportPath": "../../coverage/libs/qd-browser-check/",
|