Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

babel-plugin-transform-dev

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-transform-dev - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

7

CHANGELOG.md

@@ -12,2 +12,9 @@ # Changelog

## 1.1.1 (December 2, 2015)
- **Internal**
- Add release helpers as npm run scripts to package.json
- Employ best practices in package.json
- Don't let the plugin's babel settings polute the tests
## 1.1.0 (November 29, 2015)

@@ -14,0 +21,0 @@

11

package.json
{
"name": "babel-plugin-transform-dev",
"version": "1.1.0",
"version": "1.1.1",
"description": "A plugin for Babel v6 which replaces `__DEV__` with `'production' !== process.env.NODE_ENV`.",

@@ -28,3 +28,10 @@ "main": "lib/index.js",

"lint": "eslint src/",
"test": "npm run build && npm run lint && mocha"
"pretest": "npm run lint",
"test": "mocha",
"prepublish": "npm run build",
"preversion": "npm test",
"postversion": "git push --tags origin HEAD:master",
"release:breaking": "npm test && npm version major -m 'Release v%s' && npm publish",
"release:feature": "npm test && npm version minor -m 'Release v%s' && npm publish",
"release:fix": "npm test && npm version patch -m 'Release v%s' && npm publish"
},

@@ -31,0 +38,0 @@ "devDependencies": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc