@akinon/next 1.16.0 → 1.16.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @akinon/next
2
2
 
3
+ ## 1.16.1
4
+
5
+ ### Patch Changes
6
+
7
+ - ZERO-2414: Fix remove plugin command
8
+
3
9
  ## 1.16.0
4
10
 
5
11
  ### Minor Changes
@@ -24,7 +24,10 @@ availablePlugins
24
24
  });
25
25
 
26
26
  spawn.sync('yarn', ['cache clean']);
27
- spawn.sync('yarn', ['remove', ...availablePlugins]);
27
+
28
+ for (const plugin of availablePlugins) {
29
+ spawn.sync('yarn', ['remove', `@akinon/${plugin}`]);
30
+ }
28
31
 
29
32
  if (
30
33
  installCmd.length > 0 &&
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@akinon/next",
3
3
  "description": "Core package for Project Zero Next",
4
- "version": "1.16.0",
4
+ "version": "1.16.1",
5
5
  "private": false,
6
6
  "license": "MIT",
7
7
  "bin": {
@@ -31,7 +31,7 @@
31
31
  "@typescript-eslint/eslint-plugin": "6.7.4",
32
32
  "@typescript-eslint/parser": "6.7.4",
33
33
  "eslint": "^8.14.0",
34
- "@akinon/eslint-plugin-projectzero": "1.16.0",
34
+ "@akinon/eslint-plugin-projectzero": "1.16.1",
35
35
  "eslint-config-prettier": "8.5.0"
36
36
  }
37
37
  }