babel-plugin-version-inline
Babel plugin for turning __VERSION__ into a package version string
Last updated 10 years ago by gnandretta .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install babel-plugin-version-inline 
SYNC missed versions from official npm registry.

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"]
});

Current Tags

  • 1.0.0                                ...           latest (10 years ago)

2 Versions

  • 1.0.0                                ...           10 years ago
  • 0.0.1                                ...           11 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 1
Last Month 2
Dependencies (0)
None
Dev Dependencies (2)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |