nextjs-ide-helper 1.3.2 → 1.3.3
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/lib/loader.js +5 -0
- package/package.json +1 -1
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.
|
|
3
|
+
"version": "1.3.3",
|
|
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",
|