codeplay-common 1.0.32 → 1.0.34

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,12 +1,10 @@
1
1
  {
2
2
  "name": "codeplay-common",
3
- "version": "1.0.32",
3
+ "version": "1.0.34",
4
4
  "description": "Common build scripts and files",
5
5
  "scripts": {
6
- "postuninstall": "scripts/remove-files.js",
7
- "preuninstall": "scripts/remove-files.js",
8
- "postinstall": "scripts/sync-files.js",
9
- "uninstall": "scripts/uninstall.js"
6
+ "postinstall": "node scripts/sync-files.js",
7
+ "uninstall": "node scripts/uninstall.js"
10
8
  },
11
9
  "repository": {
12
10
  "type": "git",
@@ -59,7 +59,7 @@ const latestSplashAnimation = getLatestFile("setSplashAnimation-");
59
59
  const latestCodeplayBuild = getLatestFile("codeplayBeforeBuild-");
60
60
 
61
61
 
62
- /*
62
+
63
63
  // Update package.json
64
64
  const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, "utf8"));
65
65
 
@@ -79,4 +79,4 @@ if (latestCodeplayBuild) {
79
79
  // Save changes
80
80
  fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2), "utf8");
81
81
  console.log("✅ package.json updated!");
82
- */
82
+