-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flow #25
base: master
Are you sure you want to change the base?
Flow #25
Changes from all commits
bbf87c8
3bdaaf4
1ba5021
8ccd910
df7aa00
0663624
80c28fd
c1a0675
b775a63
f5ffc74
c87d27f
7cc45f6
49569ba
0b4b724
5a1a143
6da45c9
e7ba296
ccf1d23
382a4d3
66e1754
b61e478
08556ca
1f4fa8f
088bd7c
f7f305e
6ae326b
7d92998
49d0600
200f602
6823c39
5ebe4b1
c1d67e7
1cc374c
aa0e027
b88ec5d
444a345
3a2a94b
a6aeee1
5df91fa
194c09b
84ee08b
edfd9e5
9dfcc09
0103871
1a290bf
5a52dbd
1ef182e
1ad21be
8c3a9c9
c4ebe4f
3fc5d55
5bfa6e1
34d11a7
bf125ce
b771e26
3040128
88780b3
e7b08b5
baa7ae5
b579aa2
6f8fd1c
f15c20a
037dd8e
e074a1b
897e984
bae26a0
328dff5
0a91b60
50c700b
47df623
a8f92af
e519f6e
da12eb5
a1cb62a
85b26bd
1063974
c585b9e
76de443
24a1908
f85f5a3
5b3e738
a2356c5
20ccf62
de8fa41
ddb4c2c
a5a0bb7
80f4173
cf1fccb
576c8d8
c0cf136
cc7187d
e797361
55adcd0
ad5d693
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
version: 1.0.{build} | ||
environment: | ||
COVERALLS_REPO_TOKEN: ab4LZQwXbVRwQIn0MEHqaaOjidqu78RFQ | ||
COVERALLS_SERVICE_NAME: appveyor | ||
shallow_clone: true | ||
build_script: | ||
- ps: >- | ||
Install-Product node 0.12.0 x64 | ||
|
||
npm install -g gulp | ||
|
||
npm cache clean | ||
|
||
npm install | ||
|
||
gulp flow-win | ||
|
||
gulp test --release | ||
|
||
gulp coveralls |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[include] | ||
./node_modules/immutable | ||
./node_modules/react | ||
./src |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ bower_components | |
lib | ||
**/build | ||
test/reports | ||
dist |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
module.exports = require("./dist/ReactGridAddons"); | ||
module.exports = require("./dist/ReactGridWithAddons"); | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
var path = require("path"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 'require' is not defined. |
||
var webpack = require('webpack'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Mixed double and single quotes. |
||
var release = false; | ||
var path = require("path"); | ||
|
||
module.exports = { | ||
entry: { | ||
'ReactGrid' : './src/index', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Mixed double and single quotes. |
||
'ReactGridWithAddons' : './src/addons/index' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Mixed double and single quotes. |
||
}, | ||
output: { | ||
path: path.join(__dirname, "../dist"), | ||
filename: "[name].js", | ||
library: ["ReactGrid"], | ||
libraryTarget: "umd" | ||
}, | ||
externals: { | ||
"react/addons": { | ||
root : 'React', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Mixed double and single quotes. |
||
commonjs : 'react/addons', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Mixed double and single quotes. |
||
commonjs2 : 'react/addons', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Mixed double and single quotes. |
||
amd : 'react/addons' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Mixed double and single quotes. |
||
}, | ||
"moment" : "moment" | ||
}, | ||
module: { | ||
loaders: [ | ||
{ test: /\.js$/, loader: 'jsx-loader?stripTypes&harmony' } // loaders can take parameters as a querystring | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Line is too long. |
||
] | ||
}, | ||
plugins: [ | ||
new webpack.optimize.DedupePlugin(), | ||
new webpack.optimize.OccurenceOrderPlugin(), | ||
new webpack.optimize.AggressiveMergingPlugin() | ||
], | ||
postLoaders: [ | ||
{ | ||
test: /\.js$/, | ||
exclude: /node_modules|testData/, | ||
loader: 'jshint' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Mixed double and single quotes. |
||
}] | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing semicolon. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'require' is not defined.