npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rollup-plugin-auto-export-lib-version

v1.2.0

Published

When you package library files with Rollup.js, the VERSION field is generated automatically.

Downloads

237

Readme

rollup-plugin-auto-export-lib-version

这是一个 Rollup 插件,可以为您的库自动生成一个 VERSION 字段。

简介

此插件可以帮助您在打包的库入口文件中自动添加一个 VERSION 字段。 通过该字段,您可以更方便地对外暴露版本信息,便于版本管理和使用。

安装

npm install --save-dev rollup-plugin-auto-export-lib-version

使用方法

在 Rollup 配置中添加该插件:

import autoExportVersion from "rollup-plugin-auto-export-lib-version";

export default {
  input: "src/index.js",
  output: {
    file: "dist/bundle.js",
    format: "es",
  },
  plugins: [
    autoExportVersion({
      // 用于暴露版本号的字段名
      exportPropertyKey: "VERSION",
      // 暴露的版本号
      exportVersion: "1.0.0",
      // 源代码风格,可选值:'cjs'、'es' 或 'auto'
      sourceCodeStyle: "auto",
    }),
  ],
};

参数说明

| 参数名 | 类型 | 默认值 | 描述 | | ------------------- | -------- | ------------------------ | ----------------------------------------------------------------------------------- | | exportPropertyKey | string | 'VERSION' | 用于暴露版本号的字段名,例如 'VERSION'。 | | exportVersion | string | 从 package.json 中读取 | 要暴露的版本号。如果未提供,则会从 package.json 文件的 version 字段中自动读取。 | | sourceCodeStyle | string | 'auto' | 源代码风格。可以是 'cjs'(CommonJS)、'es'(ESModule)或 'auto'(自动检测)。 |

使用示例

package.json 中自动读取版本号

autoExportVersion();

手动指定版本号

autoExportVersion({
  exportVersion: "2.3.1",
});

自定义导出的字段名

autoExportVersion({
  exportPropertyKey: "LIB_VERSION",
});

自动检测源代码风格

autoExportVersion({
  sourceCodeStyle: "auto",
});

贡献指南

欢迎贡献代码或提出改进建议!

  1. Fork 本仓库。
  2. 提交您的更改。
  3. 提交 Pull Request。

许可证

该插件基于 MIT 许可证开源。 您可以自由使用、修改和分发。欢迎提出宝贵的反馈意见!