Manuel Mujica
Manuel Mujica
In https://github.com/stealjs/steal/pull/1501 I skipped a test for Safari Mobile. The version of iOS we were running the test initially is no longer available in Saucelabs. The test breaks on newer...
Some test pages are inside a `test` folder like `cache-bust` while others are at the root of their parents, e.g: `base`. ``` src ├── base │ ├── base.js │ ├──...
By default the generated bundles are named `dev-bundle.{css|js}` for both `--dev` and `--deps`. It was suggested we use different names by default: - For `--dev` keep `dev-bundle.{css|js}` - For `--deps`...
The missing package error is confusing sometimes. It's currently way too generic, we need to tight up the condition that triggers it, also, the error message in this case should...
Sample code to replicate issue: https://github.com/asmarques1990/stealjs-antlr Reported on https://gitter.im/stealjs/steal?at=5a0c31c671ad3f8736e8d293 while debugging this with @chasenlehara we noticed the problem is in this module:  `require('./RuleContext')`...
I have a moduleA like: ```js import * as foo from './moduleB'; ``` where moduleB looks like: ```js export { default as bar } from 'moduleC'; export { default as...
steal-tools writes out config like these to progressive load bundles: ```js global.steal.paths = { "316": "dist/bundles/bitballs/index.js", "317": "dist/bundles/bitballs/index.css", "318": "dist/bundles/404-component-de-b096d349.js", "319": "dist/bundles/details-details--87019b0a.js" }; ``` One thing I found is that,...
The current logic to write out the `sharedBundles` object of the slim loader (used to map bundle ids to an array of shared bundles that need to be loaded first),...
https://github.com/stealjs/steal-tools/pull/837 makes it so slim builds throw when `splitLoader` is set for multi main apps.