1.0.0 • Published 8 years ago

babel-plugin-version-inline v1.0.0

Weekly downloads
986
License
MIT
Repository
github
Last release
8 years ago

babel-plugin-version-inline

Turn __VERSION__ into the package's version string.

Example

Given the following package.json.

{
  "name": "package-using-babel-plugin-version-inline",
  "version": "1.0.0"
}

in

__VERSION__

out

"1.0.0"

Installation

$ npm install babel-plugin-version-inline

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["version-inline"]
}

Via CLI

$ babel --plugins version-inline script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["version-inline"]
});