Go to file
Troplo 542c6d383b 1.0.3 2023-05-08 20:07:47 +10:00
__tests__ added tests 2021-04-22 22:52:14 +02:00
demo 1.0.3 2023-05-08 20:07:47 +10:00
src 1.0.3 2023-05-08 20:07:47 +10:00
.gitignore Initial commit 2021-02-13 10:24:24 +01:00
.prettierrc Initial commit 2021-02-13 10:24:24 +01:00
LICENSE Initial commit 2021-02-13 10:24:24 +01:00
README.md updated README.md 2021-02-13 14:11:15 +01:00
jest.config.js added tests 2021-04-22 22:52:14 +02:00
package-lock.json 1.0.2 2021-05-05 20:54:49 +02:00
package.json 1.0.3 2023-05-08 20:07:47 +10:00
tsconfig.json Initial commit 2021-02-13 10:24:24 +01:00
yarn-error.log 1.0.3 2023-05-08 20:07:47 +10:00
yarn.lock 1.0.3 2023-05-08 20:07:47 +10:00

README.md

vite-plugin-package-version

npm

Note: this plugin requires vite@^2.0.0-beta.69.

Load package version of your package.json into your vite environment.

Will inject import.meta.env.PACKAGE_VERSION with the version specified in your package.json.

Installation

npm i vite-plugin-package-version

Usage

// vite.config.js
import loadVersion from 'vite-plugin-package-version';

export default {
  plugins: [loadVersion()],
};