-
Notifications
You must be signed in to change notification settings - Fork 0
Done Fixed Succesfully #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,6 +12,9 @@ | |
| "clean": "rm -rf dist" | ||
| }, | ||
| "keywords": [], | ||
| "exports" : { | ||
| "./nodeClinet" : "./dist/index.js" | ||
| }, | ||
| "author": "", | ||
| "license": "ISC", | ||
| "packageManager": "[email protected]", | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,8 +1,8 @@ | ||||||
| // Export everything from one place | ||||||
| // export * from './registry/node-registry'; | ||||||
| // export * from './google-sheets/google-sheets.node'; | ||||||
| // export * from './common/google-oauth-service'; | ||||||
| // Central export for all major modules | ||||||
| // export { default as NodeRegistry } from './registry/node-registry.js'; | ||||||
| export { GoogleSheetNode } from './google-sheets/google-sheets.node.js'; | ||||||
| import GoogleSheetsNodeExecutor from './google-sheets/google-sheets.executor.js'; | ||||||
|
|
||||||
| export {GoogleSheetsNodeExecutor} | ||||||
|
|
||||||
| console.log("Hello World From node / index.hs") | ||||||
|
|
||||||
| console.log("Hello World From node / index.ts"); | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove debug console.log statement. This console.log appears to be debug code and should not be present in production. It will create unnecessary logging noise. Apply this diff to remove the debug statement: export {GoogleSheetsNodeExecutor}
-
-console.log("Hello World From node / index.ts");📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix typo in exports key.
The export key contains a typo:
"nodeClinet"should be"nodeClient". This will prevent consumers from correctly importing the module using the intended path.Apply this diff to fix the typo:
"exports" : { - "./nodeClinet" : "./dist/index.js" + "./nodeClient" : "./dist/index.js" },📝 Committable suggestion
🤖 Prompt for AI Agents