Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@ignsg/vite-build-tools
Advanced tools
Install using your favorite package manager, eg. `yarn add @ignsg/vite-build-tools`.
@ignsg/vite-build-tools
Install using your favorite package manager, eg. yarn add @ignsg/vite-build-tools
.
@ignsg/vite-build-tools/vite-plugin-entries
This plugin is meant to simplify management of multi-entry libraries. You provide a build configuration as the input to the plugin inside of your vite.config.ts
and it will take care of building all of your entry points and then creating the appropriate exports
inside your package.json.
// vite.config.ts
import entriesPlugin, {
PluginOptions as ViteBuildPluginOptions,
} from "@ignsg/vite-build-tools/vite-plugin-entries";
const buildConfig: ViteBuildPluginOptions = {
formats: ["es"],
entries: [
{
sourcePath: "./src/index.ts",
outputPath: "lib/output",
exports: {
isMain: true,
},
},
{
sourcePath: "./src/folder/index.ts",
outputPath: "lib/otherOutput",
exports: {
exportPath: "./awesome",
},
},
],
};
export default {
plugins: [entriesPlugin(buildConfig)],
};
Will generate the folder structure:
- dist
|- lib
|- output-[hash].es.js
|- otherOutput-[hash].es.js
And modify the package.json like so:
{
...,
"#exports": "Generated automatically ..."
"exports": {
".": {
"import": "./dist/lib/output-[hash].es.js",
"default": "./dist/lib/output-[hash].es.js",
},
"./awesome": {
"import": "./dist/lib/otherOutput-[hash].es.js",
"default": "./dist/lib/otherOutput-[hash].es.js",
}
}
...,
}
To learn about other configuration options check out src/types.ts
@ignsg/vite-build-tools/vite-plugin-dts
This plugin goes hand-in-hand with @ignsg/vite-build-tools/vite-plugin-entries
to augment the generated output with lightweight type definitions (uncompiled - referencing the source). It also adds these paths to the type definitions to the exports
field in your package.json.
import entriesPlugin, { PluginOptions as ViteBuildPluginOptions } from "@ignsg/vite-build-tools/vite-plugin-entries";
import dtsPlugin from "@ignsg/vite-build-tools/vite-plugin-dts";
const buildConfig: ViteBuildPluginOptions = ...;
export default {
plugins: [entriesPlugin(buildConfig), dtsPlugin(buildConfig)],
}
Will generate the following structure (amended from above):
- dist
|- lib
|- ...
|- output-[hash].d.ts
And modify the package.json like so:
{
...
"exports": {
".": {
"types": "./dist/lib/output-[hash].d.ts",
...
},
"./awesome": {
"types": "./dist/lib/otherOutput-[hash].d.ts",
...
}
}
...,
}
Of course this library is using itself for the build configuration. Take a look at vite.config.ts to check out how it works. Enjoy 🎉
FAQs
Install using your favorite package manager, eg. `yarn add @ignsg/vite-build-tools`.
The npm package @ignsg/vite-build-tools receives a total of 2 weekly downloads. As such, @ignsg/vite-build-tools popularity was classified as not popular.
We found that @ignsg/vite-build-tools demonstrated a not healthy version release cadence and project activity because the last version was released 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.