codeplay-common 1.0.54 → 1.0.55

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,6 +1,6 @@
1
1
  {
2
2
  "name": "codeplay-common",
3
- "version": "1.0.54",
3
+ "version": "1.0.55",
4
4
  "description": "Common build scripts and files",
5
5
  "scripts": {
6
6
  "preinstall": "node scripts/uninstall.js"
@@ -7,7 +7,7 @@ const filePrefixes = [
7
7
  ];
8
8
 
9
9
 
10
- const splashXmlPath = path.join(projectRoot, "splashxml"); // Path to splashxml folder
10
+
11
11
 
12
12
 
13
13
 
@@ -17,6 +17,8 @@ const path = require("path");
17
17
  const projectRoot = path.resolve(__dirname, "../../../"); // Project root
18
18
  const commonBuildPath = path.join(__dirname, "../files"); // Path where files were copied from
19
19
 
20
+ const splashXmlPath = path.join(projectRoot, "splashxml"); // Path to splashxml folder
21
+
20
22
  process.stdout.write("🚀 Uninstalling: Removing old and copied files...");
21
23
 
22
24