Skip to content
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

Incremental builds #11

Open
OliverJAsh opened this issue Nov 22, 2015 · 1 comment
Open

Incremental builds #11

OliverJAsh opened this issue Nov 22, 2015 · 1 comment

Comments

@OliverJAsh
Copy link

It is now possible to do incremental builds, i.e. https://github.com/jackfranklin/jspm-dev-builder:

const builder = new jspm.Builder();

function build(changedModuleId) {
    builder.invalidate(changedModuleId);
    return builder.build('main', 'out');
}

build();

// and again, but this time we only need to rebuild the file that changed
build('foo');

Do you think it's possible to incorporate this somehow, for use when paired with a watch task?

@buddhike
Copy link
Owner

Looks very interesting. Pull request perhaps ;-)?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants