@plusscommunities/pluss-maintenance-app 7.0.20-auth.0 → 8.0.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/package.json +6 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plusscommunities/pluss-maintenance-app",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.1",
|
|
4
4
|
"description": "Extension package to enable maintenance on Pluss Communities Platform",
|
|
5
5
|
"main": "dist/module/index.js",
|
|
6
6
|
"module": "dist/module/index.js",
|
|
@@ -15,9 +15,6 @@
|
|
|
15
15
|
"patch": "npm version patch",
|
|
16
16
|
"betaupload": "npm run build && npm publish --access public --tag beta",
|
|
17
17
|
"betaupload:p": "npm run betapatch && npm run betaupload",
|
|
18
|
-
"authpatch": "npm version prepatch --preid=auth",
|
|
19
|
-
"authupload": "npm run build && npm publish --access public --tag auth",
|
|
20
|
-
"authupload:p": "npm run authpatch && npm run authupload",
|
|
21
18
|
"upload": "npm run build && npm publish --access public",
|
|
22
19
|
"upload:p": "npm run patch && npm run upload",
|
|
23
20
|
"copy:add": "run(){ ext=${1:-default}; test -f src/values.config.$ext.js || cp src/values.config.default.js src/values.config.$ext.js; }; run",
|
|
@@ -25,23 +22,22 @@
|
|
|
25
22
|
"copy:set": "run(){ target='\\@plusscommunities\\/pluss-maintenance-app'; ext=${1:-default}; [ $ext == 'default' ] && replace=$target || replace=$target'-'$ext; echo 'Setting target to '$replace; test -f src/values.config.$ext.js && cp -f src/values.config.$ext.js src/values.config.js; sed -i '' -e 's/'$target'.*\"/'$replace'\"/g' package.json; }; run",
|
|
26
23
|
"copy:uploadnopatch": "for file in `ls ./src/values.config.*.js`; do dup=`echo $file | sed 's/.*values\\.config\\.\\(.*\\)\\.js/\\1/'`; npm run copy:set $dup; npm run upload; done; npm run copy:set;",
|
|
27
24
|
"copy:upload": "npm run patch; npm run copy:uploadnopatch;",
|
|
28
|
-
"copy:betaupload": "npm run betapatch; for file in `ls ./src/values.config.*.js`; do dup=`echo $file | sed 's/.*values\\.config\\.\\(.*\\)\\.js/\\1/'`; npm run copy:set $dup; npm run betaupload; done; npm run copy:set;"
|
|
29
|
-
"copy:authupload": "npm run authpatch; for file in `ls ./src/values.config.*.js`; do dup=`echo $file | sed 's/.*values\\.config\\.\\(.*\\)\\.js/\\1/'`; npm run copy:set $dup; npm run authupload; done; npm run copy:set;"
|
|
25
|
+
"copy:betaupload": "npm run betapatch; for file in `ls ./src/values.config.*.js`; do dup=`echo $file | sed 's/.*values\\.config\\.\\(.*\\)\\.js/\\1/'`; npm run copy:set $dup; npm run betaupload; done; npm run copy:set;"
|
|
30
26
|
},
|
|
31
27
|
"author": "Thorbjorn Kappel Davis",
|
|
32
28
|
"license": "ISC",
|
|
33
29
|
"dependencies": {},
|
|
34
30
|
"peerDependencies": {
|
|
35
|
-
"@plusscommunities/pluss-core-app": "^
|
|
31
|
+
"@plusscommunities/pluss-core-app": "^8.0.0",
|
|
36
32
|
"axios": "^1.6.8",
|
|
37
33
|
"lodash": "^4.17.4",
|
|
38
34
|
"moment": "^2.30.1",
|
|
39
|
-
"react": "
|
|
40
|
-
"react-native": "0.
|
|
35
|
+
"react": "^19.1.0",
|
|
36
|
+
"react-native": "^0.81.5",
|
|
41
37
|
"@rneui/base": "^4.0.0-rc.8",
|
|
42
38
|
"@rneui/themed": "^4.0.0-rc.8",
|
|
43
39
|
"react-native-iphone-x-helper": "^1.3.1",
|
|
44
|
-
"react-native-webview": "13.
|
|
40
|
+
"react-native-webview": "^13.15.0",
|
|
45
41
|
"react-redux": "^7.2.6",
|
|
46
42
|
"redux-persist": "^6.0.0"
|
|
47
43
|
},
|