Julian
Julian
i wrote a smal test with the CanJS framework. ``` $ -> can.Control.extend "sp.plugin.myPlugin", pluginName : 'myPlugin', defaults: myText: 'foo' , init: (el) -> alert @options.myText $('body').myPlugin() ``` on coffee-script...
i see that systemJS does module detection with regex. i think we should introduce a parser like webpack did. cc @matthewp what do you think?
i was playing around with AST by using [acorn](https://github.com/acornjs/acorn). Acorn has a plugin to parse code with static class fields. https://github.com/acornjs/acorn-static-class-features Unfortuallity escodegen can't handle this feature. So i wrote...
Hey, i had an issue with `await` and compiling to ES6. i used the new `forceES5: false` option to avoid compiling to ES5. it worked on stealjs (in the browser)....
see this test repo. https://github.com/pYr0x/import-bug i have two files, both imported from "d3-axis". the first one imported `{axisLeft, axisBottom}` and the second one imported `{axisLeft, axisTop}`. you see that `axisBottom`...
i give the slim loader a try and want to use it in my multimain app, we had an issue with multimain #823 and @m-mujica solved it. but now i...
see this demo app https://github.com/pYr0x/sidebundle if treeshaking is off, `vendor` gets bundles out if true, `vendor` is not bundled
if someone (me) is explicit, this will not work: ```js import steal from "@steal"; steal.import("foobar").then(function(module){console.log(module)}); ``` `steal.import` Is not defined
this issue #889 caused that we fixed uglify to version 3.1.3 in new steal 2.0 we introduced treeshaking. so now we can set `compress: false` to the uglify options.
i want to use d3js to create charts. i was importing all d3js modules like in my main.js file ```js import * as d3 from "d3"; ``` using the steal-tools...