nextjs-ide-helper 1.3.2 → 1.3.4

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.
Files changed (2) hide show
  1. package/lib/loader.js +5 -0
  2. package/package.json +6 -3
package/lib/loader.js CHANGED
@@ -5,6 +5,11 @@ const generate = require('@babel/generator').default;
5
5
  const t = require('@babel/types');
6
6
  const { minimatch } = require('minimatch');
7
7
 
8
+ console.log('.................................')
9
+ console.log('🔧 minimatch version:', require('minimatch/package.json').version);
10
+ console.log('minimatch is', require('minimatch'));
11
+ console.log('.................................')
12
+
8
13
  /**
9
14
  * Webpack loader that automatically wraps React components with cursor buttons
10
15
  * @param {string} source - The source code of the file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextjs-ide-helper",
3
- "version": "1.3.2",
3
+ "version": "1.3.4",
4
4
  "description": "A Next.js plugin that automatically adds IDE buttons to React components for seamless IDE integration. Supports Cursor, VS Code, WebStorm, and Atom.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -32,6 +32,10 @@
32
32
  "next": ">=13.0.0",
33
33
  "react": ">=18.0.0"
34
34
  },
35
+ "dependencies": {
36
+ "minimatch": "^10.0.3"
37
+ },
38
+
35
39
  "devDependencies": {
36
40
  "@babel/generator": "^7.28.0",
37
41
  "@babel/parser": "^7.28.0",
@@ -40,8 +44,7 @@
40
44
  "@types/jest": "^30.0.0",
41
45
  "@types/node": "^20.19.9",
42
46
  "@types/react": "^18.3.23",
43
- "jest": "^30.0.5",
44
- "minimatch": "^10.0.3",
47
+ "jest": "^30.0.5",
45
48
  "typescript": "^5.8.3"
46
49
  },
47
50
  "repository": {