-
-
Notifications
You must be signed in to change notification settings - Fork 48
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
fix: use synckit with ESM correctly #201
Conversation
Actually I think this is no need to minify the bundle which makes debug unusable + log useless. |
"package": "yarn build && yarn build:worker && vsce package --yarn", | ||
"build:dev": "yarn build:extension && yarn build:worker", | ||
"build": "yarn build:extension --minify && yarn build:worker --minify", | ||
"build:extension": "esbuild ./src/extension.js --bundle --platform=node --target=node16 --external:vscode --external:../worker.mjs --outfile=./dist/extension.js", |
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.
Maybe we should enable --sourcemap
.
@idahogurl Any time to review? |
@@ -98,6 +100,10 @@ | |||
} | |||
} | |||
}, | |||
"vsce": { | |||
"dependencies": false, |
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.
I will review tomorrow. |
No description provided.