glimmerjs / glimmer-blueprint

[MOVED] This package is now part of the Glimmer.js monorepo
https://github.com/glimmerjs/glimmer.js
25 stars 13 forks source link

Make it easier to upgrade #61

Closed chancancode closed 7 years ago

chancancode commented 7 years ago

This allows you to type ember init instead of ember init -b @glimmer/blueprint every time

chancancode commented 7 years ago

@rwjblue asked me to confirm it doesn't conflict with the anonymous option in the generator. Seems like it does not:

/t/glimmer-zomg ❯❯❯ ember g component z
installing component
You specified "z", but in order to prevent clashes with current or future HTML element names, you must include a hyphen in the component name.
/t/glimmer-zomg ❯❯❯ ember g component z-s
installing component
  create app/components/z-s.js
  create app/templates/components/z-s.hbs
Couldn't determine test style - using QUnit
installing component-test
Couldn't determine test style - using QUnit
Couldn't determine test style - using QUnit
Couldn't determine test style - using QUnit
Couldn't determine test style - using QUnit
  create tests/integration/components/z-s-test.js
/t/glimmer-zomg ❯❯❯ cat .ember-cli
{
  "blueprint": "@glimmer/blueprint"
}