Manuel Mujica

Results 21 issues of 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 │   ├──...

internal

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`...

enhancement
dev bundles
semver major

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...

enhancement
error messages

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: ![screen shot 2017-11-15 at 10 54 06](https://user-images.githubusercontent.com/724877/32852294-ae60c34e-c9f4-11e7-9ec5-7c95a19d2a96.png) `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...

bug
tree shaking

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,...

bug
slim

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),...

discussion
slim

https://github.com/stealjs/steal-tools/pull/837 makes it so slim builds throw when `splitLoader` is set for multi main apps.

feature
multi-main
slim