Comparing version 1.6.7 to 1.6.8
# Changelog | ||
## 1.6.8 | ||
- revert deprecation notice. | ||
Today I learned, if build tools emit anything on console.warn, it is a breaking change. Sorry! | ||
## 1.6.7 | ||
- attempt to emit a deprecation notice | ||
## 1.6.6 | ||
@@ -4,0 +14,0 @@ - chore: update jetifier-standalone distribution (thanks @mcBIG!) |
@@ -14,3 +14,2 @@ const { fork } = require('child_process'); | ||
console.warn('Jetifier is deprecated. Future versions of react-native CLI may not run it by default.') | ||
console.log(`Jetifier found ${files.length} file(s) to ${mode}-jetify. Using ${cpus} workers...`); | ||
@@ -17,0 +16,0 @@ |
{ | ||
"name": "jetifier", | ||
"version": "1.6.7", | ||
"version": "1.6.8", | ||
"description": "jetifier from Android Studio, in npm package format", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -9,3 +9,2 @@ const { readFileSync, writeFileSync } = require('fs'); | ||
if (data.includes(mode === 'forward' ? oldClass : newClass)) { | ||
console.warn(`Jetifier: propose an AndroidX conversion PR to this repository: ${file}`) | ||
data = mode === 'forward' ? | ||
@@ -12,0 +11,0 @@ data.replace(new RegExp(oldClass, 'g'), newClass) : |
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
2932124
91