You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 15, 2020. It is now read-only.
If I don't manually specify my bundles using the { bundles: { 'output.js': {entryPoints: ['entry-point.js']}}} options syntax and instead opt for the {bundleExtension: '.bundle', outputExtension: '.es5'} options syntax, then recompiles will not be triggered when my dependencies change. A simple example:
With a.js and b.js where:
// a.js
console.log(require('./b'));
// b.js
module.exports = 'foo';
If I change b.js to module.exports = 'bar'; then a.js will not recompile to reflect this change.
If I don't manually specify my bundles using the
{ bundles: { 'output.js': {entryPoints: ['entry-point.js']}}}options syntax and instead opt for the{bundleExtension: '.bundle', outputExtension: '.es5'}options syntax, then recompiles will not be triggered when my dependencies change. A simple example:With
a.jsandb.jswhere:If I change
b.jstomodule.exports = 'bar';thena.jswill not recompile to reflect this change.