codeplay-common 1.0.48 → 1.0.49

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.48",
3
+ "version": "1.0.49",
4
4
  "description": "Common build scripts and files",
5
5
  "scripts": {
6
6
 
@@ -57,10 +57,10 @@ filesInProject.forEach(file => {
57
57
  const filePrefixes = ["add-splash-screen", "setSplashAnimation", "codeplayBeforeBuild"];
58
58
 
59
59
  // Step 1: Find all matching files in the project directory
60
- const filesInProject = fs.readdirSync(projectRoot)
60
+ const filesInProject1 = fs.readdirSync(projectRoot)
61
61
  .filter(file => filePrefixes.some(prefix => file.startsWith(prefix)));
62
62
 
63
- filesInProject.forEach(file => {
63
+ filesInProject1.forEach(file => {
64
64
  const filePath = path.join(projectRoot, file);
65
65
  try {
66
66
  fs.unlinkSync(filePath);