Skip to content

Commit caff9a0

Browse files
committed
[removed] Factory support
See react-bootstrap#825
1 parent fbf9ed6 commit caff9a0

9 files changed

+5
-91
lines changed

docs/src/GettingStartedPage.js

-12
Original file line numberDiff line numberDiff line change
@@ -87,18 +87,6 @@ define(['react-bootstrap'], function(ReactBootstrap) { var Alert = ReactBootstra
8787
/>
8888
</div>
8989

90-
<h3>Without JSX</h3>
91-
<p>If you do not use JSX and just call components as functions, you must explicitly <a href="https://facebook.github.io/react/blog/2014/10/14/introducing-react-elements.html#deprecated-auto-generated-factories">create a factory before calling it</a>. React-bootstrap provides factories for you in <code>lib/factories</code>:</p>
92-
<div className="highlight">
93-
<CodeExample
94-
mode="javascript"
95-
codeText={
96-
`var Alert = require('react-bootstrap/lib/factories').Alert;
97-
// or
98-
var Alert = require('react-bootstrap/lib/factories/Alert');`
99-
}
100-
/>
101-
</div>
10290
</div>
10391
<div className="bs-docs-section">
10492
<h2 id="browser-support" className="page-header">Browser support</h2>

package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@
99
"homepage": "http://react-bootstrap.github.io/",
1010
"scripts": {
1111
"build": "babel-node tools/build-cli.js",
12-
"lib-build": "babel-node tools/build-cli.js --lib-only",
13-
"test-watch": "npm run lib-build && karma start",
14-
"test-coverage": "npm run lib-build && COVERAGE=true karma start --single-run",
12+
"test-watch": "karma start",
13+
"test-coverage": "COVERAGE=true karma start --single-run",
1514
"test": "npm run lint && npm run build && npm run tests-set",
1615
"tests-set": "karma start --single-run && _mocha --compilers js:babel-core/register test/server/*Spec.js",
1716
"lint": "eslint ./",

src/templates/factory.index.js.template

-11
This file was deleted.

src/templates/factory.js.template

-6
This file was deleted.

test/FactoriesSpec.js

-21
This file was deleted.

tools/build-cli.js

+1-9
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import 'colors';
44
import build from './build';
55
import docs from '../docs/build';
6-
import lib from './lib/build';
76
import { setExecOptions } from './exec';
87

98
import yargs from 'yargs';
@@ -14,11 +13,6 @@ const argv = yargs
1413
demand: false,
1514
default: false
1615
})
17-
.option('lib-only', {
18-
demand: false,
19-
default: false,
20-
describe: 'Used for factories testing'
21-
})
2216
.option('verbose', {
2317
demand: false,
2418
default: false,
@@ -35,9 +29,7 @@ setExecOptions(argv);
3529

3630
let buildProcess;
3731

38-
if (argv.libOnly) {
39-
buildProcess = lib(argv);
40-
} else if (argv.docsOnly) {
32+
if (argv.docsOnly) {
4133
buildProcess = docs(argv);
4234
} else {
4335
buildProcess = build(argv);

tools/generateFactories.js

-23
This file was deleted.

tools/lib/build.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,13 @@ import 'colors';
22
import { exec } from '../exec';
33
import fsp from 'fs-promise';
44
import { srcRoot, libRoot } from '../constants';
5-
import generateFactories from '../generateFactories';
65
import { buildFolder } from '../buildBabel';
76

87
export default function BuildCommonJs() {
98
console.log('Building: '.cyan + 'npm module'.green);
109

1110
return exec(`rimraf ${libRoot}`)
1211
.then(() => fsp.mkdirs(libRoot))
13-
.then(() => Promise.all([
14-
generateFactories(libRoot),
15-
buildFolder(srcRoot, libRoot)
16-
]))
12+
.then(() => buildFolder(srcRoot, libRoot))
1713
.then(() => console.log('Built: '.cyan + 'npm module'.green));
1814
}

tools/release-scripts/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { exec } from '../exec';
44
function test() {
55
console.log('Running: '.cyan + 'tests'.green);
66

7-
return exec('npm run lib-build && npm run tests-set')
7+
return exec('npm run tests-set')
88
.then(() => console.log('Completed: '.cyan + 'tests'.green));
99
}
1010

0 commit comments

Comments
 (0)