Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@pocka/rollup-plugin-gleam
Advanced tools
A Rollup plugin that add supports for Gleam language. Also compatible with Vite.
@pocka/rollup-plugin-gleam
This plugin requires Rollup >= v1.12.0 and a working Gleam executable (gleam
).
Import the plugin in your rollup.config.js
or vite.config.js
:
import { gleam } from "@pocka/rollup-plugin-gleam";
export default {
// ...
plugins: [gleam()],
};
Then you can import .gleam
files:
// hello.gleam
pub fn hello(name: String) -> String {
"Hello, " <> name
}
import { hello } from "./hello.gleam";
console.log(hello("World"));
gleamToml
URL
or String"./gleam.toml"
File path or file URL to gleam.toml
.
If the value is relative path string, this plugin resolves the path from current working directory.
gleam({
gleamToml: new URL("./gleam.toml", import.meta.url),
});
bin
"gleam"
Binary name or path to Gleam executable file. This plugin builds Gleam file using this value.
gleam({
bin: "/path/to/gleam",
});
// > /path/to/gleam build --target javascript
buildOptions.warningAsErrors
false
This option activates --warning-as-errors
compiler flag.
If this option is enabled, warning made by Gleam compiler will be treated as a build error.
gleam({
buildOptions: {
warningAsErrors: true,
},
});
// This won't compile with the flag on, due to an unused variable warning.
pub fn hello(name: String) -> String {
"Hello World!"
}
This software is licensed under Apache License Version 2.0.
This project adheres to REUSE Specification.
Every checked-in file has copyright and license information inside a comment header, adjacent *.license
file, or REUSE.toml file.
FAQs
Rollup plugin for Gleam language.
We found that @pocka/rollup-plugin-gleam demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.