Skip to content

Commit 3a254a1

Browse files
committed
[added] Deprecation warning for individual file use in the Bower release
Preparatory step for react-bootstrap#693
1 parent f2da250 commit 3a254a1

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

src/utils/deprecationWarning.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default function deprecationWarning(oldname, newname, link) {
88
console.warn(message);
99

1010
if (link) {
11-
console.warn(`You can read more about it here ${link}`);
11+
console.warn(`You can read more about it at ${link}`);
1212
}
1313
}
1414
}

tools/amd/build.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ const bowerJson = path.join(bowerRoot, 'bower.json');
1414
const readme = path.join(__dirname, 'README.md');
1515
const license = path.join(repoRoot, 'LICENSE');
1616

17-
const babelOptions = {modules: 'amd'};
17+
const babelOptions = {
18+
__reactBootstrapDeprecationWarning: true,
19+
modules: 'amd'
20+
};
1821

1922
const libDestination = path.join(bowerRoot, 'lib');
2023
const factoriesDestination = path.join(libDestination, 'factories');

tools/buildBabel.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,13 @@ export function buildContent(content, filename, destination, babelOptions={}) {
1212
}
1313

1414
export function buildFile(filename, destination, babelOptions={}) {
15-
const content = fs.readFileSync(filename, {encoding: 'utf8'});
15+
let content = fs.readFileSync(filename, {encoding: 'utf8'});
16+
if (babelOptions.__reactBootstrapDeprecationWarning) {
17+
content = `console.warn('This file is deprecated, and will be removed in v0.24.0. Use react-bootstrap.js or react-bootstrap.min.js instead.');
18+
console.warn('You can read more about it at https://github.com/react-bootstrap/react-bootstrap/issues/693');
19+
${content}`;
20+
}
21+
1622
if(babelUtil.canCompile(filename)) {
1723
// Get file basename without the extension (in case not .js)
1824
let outputName = path.basename(filename, path.extname(filename));

0 commit comments

Comments
 (0)