codeplay-common 1.0.37 → 1.0.39

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 CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "codeplay-common",
3
- "version": "1.0.37",
3
+ "version": "1.0.39",
4
4
  "description": "Common build scripts and files",
5
5
  "scripts": {
6
6
  "postinstall": "node scripts/sync-files.js",
7
- "uninstall": "node scripts/uninstall.js"
7
+ "uninstall": "node scripts/uninstall.js",
8
+ "preuninstall": "echo 'Uninstalling the app' && npx cap uninstall"
8
9
  },
9
10
  "repository": {
10
11
  "type": "git",
@@ -62,7 +62,7 @@ function getLatestFile(prefix) {
62
62
 
63
63
 
64
64
 
65
- const packageJsonPath = path.join(projectRoot, "package.json");
65
+ //const packageJsonPath = path.join(projectRoot, "package.json");
66
66
 
67
67
  // Detect latest script versions
68
68
  const latestSplashScreen = getLatestFile("add-splash-screen-");