codeplay-common 1.0.46 → 1.0.47

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.46",
3
+ "version": "1.0.47",
4
4
  "description": "Common build scripts and files",
5
5
  "scripts": {
6
6
 
@@ -17,7 +17,7 @@ const getBaseName = (filename) => filename.replace(/-\d+\.\d+\.js$/, "");
17
17
 
18
18
  // Step 1: Find all versioned files in the project directory
19
19
  const filesInProject = fs.readdirSync(projectRoot)
20
- .filter(file => file.match(/(add-splash-screen|setSplashAnimation|codeplayBeforeBuild)-\d+\.\d+\.js/));
20
+ .filter(file => file.match(/(add-splash-screen-|setSplashAnimation-|codeplayBeforeBuild-)-\d+\.\d+\.js/));
21
21
 
22
22
  const latestVersions = {};
23
23