comment-variables 0.0.1 → 0.0.2

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.
@@ -87,6 +87,8 @@ export const resolveImportPath = (
87
87
  return null; // not found
88
88
  };
89
89
 
90
+ /* getSourceCodeFromFilePath */
91
+
90
92
  // ESLint configs language options
91
93
  const typeScriptAndJSXCompatible = {
92
94
  // for compatibility with .ts and .tsx
@@ -99,8 +101,6 @@ const typeScriptAndJSXCompatible = {
99
101
  },
100
102
  };
101
103
 
102
- /* getSourceCodeFromFilePath */
103
-
104
104
  /**
105
105
  * Gets the ESLint-generated SourceCode object of a file from its resolved path.
106
106
  * @param {string} resolvedPath The resolved path of the file.
@@ -228,4 +228,5 @@ So here I want to make
228
228
 
229
229
  js-comments is taken on npm.
230
230
  JSComments, jscomments is free.
231
+ comment-variables in the end.
231
232
  */
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "comment-variables",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "",
5
5
  "bin": {
6
- "jscomments": "./index.js"
6
+ "jscomments": "./index.js",
7
+ "comment-variables": "./index.js"
7
8
  },
8
9
  "main": "index.js",
9
10
  "repository": {