Daniel Bendel
Daniel Bendel
See also #399. Personally, I'd like this as an option as it's more boilerplate code. Currently, the CLI creates a minimal project. If I want a minimal project, I can...
@KernowCode BrowserSync has an `https` option. 😃
Additional note: I've read https://github.com/aurelia/cli/issues/659 but in my case, there are no sourcemaps and the issue can be resolved by moving the configuration into `vendor-bundle`.
Reproduction repo: https://github.com/Thanood/md-todo-systemjs The sass files are not loaded, I've chosen the wrong CSS processor. Please ignore that. 😃
Thanks for looking at this. 😃 👍
Shouldn't this ```js define('aurelia-materialize-bridge', ['aurelia-materialize-bridge/index'], function (main) { return main; }); ``` rather be something like ```js define('aurelia-materialize-bridge', ['aurelia-materialize-bridge/index', 'jquery'], function (main) { return main; }); ``` instead when deps...
Hmm, `aurelia-materialize-bridge` contains two script files which convert Materialize to an AMD module. This should work with amodro. The script files are [`materialize-css.js`](https://github.com/aurelia-ui-toolkits/aurelia-materialize-bridge/blob/master/build/tools/materialize-css.js) and [`rbuild.js`](https://github.com/aurelia-ui-toolkits/aurelia-materialize-bridge/blob/master/build/tools/rbuild.js). It's used like this if...
A few first recipes: ### Enable BrowserSync to proxy a backend server In `aurelia_project/tasks/run.js` change the `server` task to: ``` javascript let serve = gulp.series( build, done => { browserSync({...
> Adding plugins such as materializecss. Includes setting up sass tasks to override materializecss defaults. Would be nice with complete configuration guides. Having created a Materialize bridge, I find this...
I suspect we can close this since 1.5.0 did the changes. 😃