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.
- package/find-all-imports.js +3 -2
- package/package.json +3 -2
package/find-all-imports.js
CHANGED
|
@@ -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