task-script-support-cli 0.2.5 → 0.2.6

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.
@@ -51,6 +51,10 @@ echo 'node_modules
51
51
  dist
52
52
  .env' > "$DESTINATION/.gitignore";
53
53
 
54
+ # remove double nested tests directory : need to look into why this is happening
55
+ if [ -d "$DESTINATION/tests/tests" ]; then
56
+ rm -rf "$DESTINATION/tests/tests";
57
+ fi
54
58
 
55
59
  mv "$DESTINATION/task-runner" "$DESTINATION/$1"
56
60
 
@@ -51,6 +51,10 @@ echo 'node_modules
51
51
  dist
52
52
  .env' > "$DESTINATION/.gitignore";
53
53
 
54
+ # remove double nested tests directory : need to look into why this is happening
55
+ if [ -d "$DESTINATION/tests/tests" ]; then
56
+ rm -rf "$DESTINATION/tests/tests";
57
+ fi
54
58
 
55
59
  mv "$DESTINATION/task-runner" "$DESTINATION/$1"
56
60
 
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "task-script-support-cli",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "main": "index.js",
5
5
  "type": "commonjs",
6
6
  "preferGlobal": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "task-script-support-cli",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "main": "index.js",
5
5
  "type": "commonjs",
6
6
  "preferGlobal": true,