Skip to content

Commit 6bea40c

Browse files
committed
Remove browserify from devDeps & re-add to master-detail example, commit yarn.lock
1 parent e806371 commit 6bea40c

File tree

8 files changed

+6236
-14
lines changed

8 files changed

+6236
-14
lines changed

examples/context/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
/**
2-
* @jsx React.DOM
3-
*/
41
"use strict";
52

63
var React = require('react');

examples/master-detail/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
NPM_BIN=$(shell npm bin)
2+
export PATH := $(NPM_BIN):$(PATH)
13
.DELETE_ON_ERROR:
24

35
bundle.js: index.js
4-
browserify -t [ reactify --es6 ] $< > $@
6+
browserify -t [ babelify ] $< > $@

examples/master-detail/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
/**
2-
* @jsx React.DOM
3-
*/
41
'use strict';
52

63
var React = require('react');
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"devDependencies": {
3+
"babelify": "^7.3.0",
4+
"browserify": "^13.1.1"
5+
}
6+
}

0 commit comments

Comments
 (0)