babel-plugin-debug-macros
Advanced tools
Comparing version 0.3.3 to 0.3.4
@@ -0,1 +1,20 @@ | ||
## v0.3.4 (2021-01-27) | ||
#### :rocket: Enhancement | ||
* [#83](https://github.com/ember-cli/babel-plugin-debug-macros/pull/83) Remove validation check for deprecation `until` ([@pzuraq](https://github.com/pzuraq)) | ||
#### :bug: Bug Fix | ||
* [#81](https://github.com/ember-cli/babel-plugin-debug-macros/pull/81) Improve v1 API warning ([@hjdivad](https://github.com/hjdivad)) | ||
#### :house: Internal | ||
* [#86](https://github.com/ember-cli/babel-plugin-debug-macros/pull/86) Update release automation setup ([@rwjblue](https://github.com/rwjblue)) | ||
* [#85](https://github.com/ember-cli/babel-plugin-debug-macros/pull/85) Update to ensure `npm test` runs linting. ([@rwjblue](https://github.com/rwjblue)) | ||
* [#84](https://github.com/ember-cli/babel-plugin-debug-macros/pull/84) Setup GitHub Actions. ([@rwjblue](https://github.com/rwjblue)) | ||
#### Committers: 3 | ||
- Chris Garrett ([@pzuraq](https://github.com/pzuraq)) | ||
- David J. Hamilton ([@hjdivad](https://github.com/hjdivad)) | ||
- Robert Jackson ([@rwjblue](https://github.com/rwjblue)) | ||
## v0.3.3 (2019-08-26) | ||
@@ -2,0 +21,0 @@ |
{ | ||
"name": "babel-plugin-debug-macros", | ||
"version": "0.3.3", | ||
"version": "0.3.4", | ||
"description": "Debug macros and feature flag stripping", | ||
@@ -19,2 +19,3 @@ "keywords": [ | ||
], | ||
"main": "src/index.js", | ||
"files": [ | ||
@@ -24,6 +25,7 @@ "src/", | ||
], | ||
"main": "src/index.js", | ||
"scripts": { | ||
"changelog": "lerna-changelog", | ||
"test": "jest" | ||
"lint": "eslint .", | ||
"test": "npm-run-all lint test:jest", | ||
"test:jest": "jest" | ||
}, | ||
@@ -50,5 +52,6 @@ "jest": { | ||
"lerna-changelog": "^0.8.2", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^1.12.1", | ||
"release-it": "^12.2.1", | ||
"release-it-lerna-changelog": "^1.0.3" | ||
"release-it": "^14.2.1", | ||
"release-it-lerna-changelog": "^3.1.0" | ||
}, | ||
@@ -67,3 +70,4 @@ "peerDependencies": { | ||
"release-it-lerna-changelog": { | ||
"infile": "CHANGELOG.md" | ||
"infile": "CHANGELOG.md", | ||
"launchEditor": true | ||
} | ||
@@ -75,5 +79,6 @@ }, | ||
"github": { | ||
"release": true | ||
"release": true, | ||
"tokenRef": "GITHUB_AUTH" | ||
} | ||
} | ||
} |
@@ -167,10 +167,2 @@ 'use strict'; | ||
} | ||
if ( | ||
meta && | ||
meta.properties && | ||
!meta.properties.some(prop => prop.key.name === 'until' || prop.key.value === 'until') | ||
) { | ||
throw new ReferenceError(`deprecate's meta information requires an "until" field.`); | ||
} | ||
}, | ||
@@ -177,0 +169,0 @@ }); |
@@ -98,6 +98,9 @@ 'use strict'; | ||
if (legacyFeatures || legacyEnvFlags) { | ||
let msg = `[babel-plugin-debug-macros]: passed v1 configuration, converting to v2. Legacy configuration passed:\n${JSON.stringify( | ||
options, | ||
null, | ||
2 | ||
)}`; | ||
// eslint-disable-next-line no-console | ||
console.warn( | ||
'babel-plugin-debug-macros configuration API has changed, please update your configuration' | ||
); | ||
console.warn(msg); | ||
} | ||
@@ -104,0 +107,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26006
15
453