Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.