Closed krasnoukhov closed 9 years ago
finally with "6to5-loader?experimental" I could build except there were 2 errors (not bower but npm ). In lib/schema.js, I had to change
returnvalidate(value, childrenValidation)
to
return super.validate(value, childrenValidation)
at 2 places. Didn't test the functionality yet.
@bsr203 did it work?
ya, it worked for the functionalities I tried so far. I only made the two changes I mentioned above.
I'm looking for a way to build current
master
similarly to the result ofreact-forms-build
repo.Makefile
does not seem to contain a command for that.I've tried following:
node ./node_modules/browserify/bin/cmd.js lib --standalone ReactForms -o react-forms.js
, but it does not seem to produce the result as inreact-forms-build
.I know I might sound stupid, but any help would be appreciated. Thanks!