-
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
Build process issues #3
Comments
Does npm automatically pull the latest tag published to github? |
|
@jacobwindsor I'm moving away from gulp to NPM scripts. Some of the scripts I have in package.json are outdated, like anything with |
@jacobwindsor I want users of this library to be able to pull in different parts independently. For example, if a user wants to use just the API client, they could do: import bridgedb from 'bridgedb';
var bridgedb = new Bridgedb(); or if the user just wanted the DataSourceSelect UI component: import { DataSourceSelect } from 'bridgedb/ui'; That means the compiled code needs to be published in the top-level directory. |
The build process from
gulp build
currently seems to not include the dist files, which means that you cannot rungulp publish
immediately after building. Would be better to merge the gulp directory from this lib into workflow-bob.Also, it would be nice to avoid checking all the built files (dist, test, and demo) into master in order to limit the size of the repo when cloning it.
The text was updated successfully, but these errors were encountered: