@node-minify/types 10.1.0 → 10.1.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
  # @node-minify/types
2
2
 
3
+ ## 10.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - eb785b0: Fix npm install error caused by unresolved workspace:\* references in published packages
8
+
3
9
  ## 10.1.0
4
10
 
5
11
  ## 10.0.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node-minify/types",
3
- "version": "10.1.0",
3
+ "version": "10.1.1",
4
4
  "description": "types for @node-minify",
5
5
  "keywords": [
6
6
  "compressor",
@@ -27,4 +27,4 @@
27
27
  "bugs": {
28
28
  "url": "https://github.com/srod/node-minify/issues"
29
29
  }
30
- }
30
+ }
@@ -0,0 +1,7 @@
1
+ import { defineProject } from "vitest/config";
2
+
3
+ export default defineProject({
4
+ test: {
5
+ include: [],
6
+ },
7
+ });