We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello
would it be possible to automatically also minify and "link" all the files that are imported with the standard js syntax?
To give an idea index.js:
index.js
import test from './test.js' console.log(test.hello());
test.js:
test.js
export function hello() { return 'Hello, World!'; }
output (sort-of, this was hand made):
output
t.h = () => 'Hello, World!';console.log(t.h());
I'm using the js api.
Could this also be done with standard node modules?
I hope I managed to explain my self.
Ty in advance
Rico
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello
would it be possible to automatically also minify and "link" all the files that are imported with the standard js syntax?
To give an idea
index.js
:test.js
:output
(sort-of, this was hand made):I'm using the js api.
Could this also be done with standard node modules?
I hope I managed to explain my self.
Ty in advance
Rico
The text was updated successfully, but these errors were encountered: