Quasar v0.9.1 is out!
-
Time to party!
Read release notes here: https://goo.gl/Oi6TJ5 -
testing it right now!
-
So far so good
I will test the webpack 2 template tomorrow.
The q-drawer-links are made for the sidebar menu lines and they are great for this.
But I have an account info toolbar at the top of my sidebar where I need to have a tiny setting icon linked to a profile page. And it’s not obvious to get rid of the q-drawer-link styles to make a simple link like this look like it should in the toolbar… -
Found a way to display q-drawer-links in my sidebar toolbar within
q-collapsible
. Pretty nice component. -
I made the switch to the Webpack 2 template. Working fine
Simply noticed"quasar-framework": "0.9.1"
in the new package.json template instead of"quasar-framework": "^0.9.1"
. Is it a typo ? -
@LaurentPayot bounced back and forth with that prop and finally forgot to add the caret character. Will add it back. If you have time can you do a PR pls? It would seed things up.
-
@rstoenescu PR done!
-
By the way I also noticed that the .babelrc presets are now
[["es2015", {"modules": false}], "stage-2"]
. It created some issues with a script of mine so I had to go back to["es2015", "stage-2"]
. -
That modules false thingy is required for Webpack 2 to work correctly along Babel.
What scripts of yours were making trouble?
-
@rstoenescu A script I’m using to populate my database. It uses babel-cli and I’ve just realized I could force the babel-cli own presets in the cli. So I’m using the standard Webpack2 .babelrc and it’s working fine. Thanks Razvan!