Skip to content

Releases: donejs/generator-donejs

Use xenial in travis templates

19 Nov 16:37
Compare
Choose a tag to compare

Updates the .travis.yml in the plugin template to use xenial in travis.

#311

Ignore trailing slashes when running donejs add component

04 Jul 17:09
Compare
Choose a tag to compare

Handle scoped name of projects

24 Apr 13:33
Compare
Choose a tag to compare

This will keep the name in the package.json if you provide a name like "@bitovi/my-plugin" and will prompt if you are wish the package to be public which is default and will add "--access public" to the npm publish scripts.

Ref - donejs/donejs#1176

Component name with same name as the app

26 Mar 19:41
Compare
Choose a tag to compare

Now the user is able to generate a component that has the same name as the app, for example, given an app named cms with src folder for the code:
donejs add component cms -> generates src/cms/cms.js

It is applicable to the component's folder too:
donejs add component cms/cms -> generates src/cms/cms/cms.js

#304

3.2.0

27 Dec 13:05
Compare
Choose a tag to compare

Configures steal to use the can package for stache files.

3.1.0

14 Dec 15:21
Compare
Choose a tag to compare

This is a minor release. This adds two new features:

  • Models are generated with names. This means instead of:
const Restaurant = DefineMap.extend({ ...

Names are given for better devtools integration:

const Restaurant = DefineMap.extend("Restaurant", { ...

Secondly, modlet component demo pages use a simpler method that involves using the constructible can-components.

<script type="steal-module">
import "place-my-order-assets";
import "~/models/fixtures/";
import RestaurantList from "~/pages/restaurant/list/";

const list = new RestaurantList({
  viewModel: {}
});

document.body.appendChild(list.element);
</script>

3.0.0

15 Nov 13:24
Compare
Choose a tag to compare

This is a major release of generator-donejs. This release is for DoneJS 3.0, bringing compatibility with CanJS 5 and StealJS 2.

v2.1.0

23 Mar 23:43
Compare
Choose a tag to compare

Use prompt defaults when option is passed in #281

2.0.0

22 Feb 15:01
Compare
Choose a tag to compare
v2.0.0

2.0.0

v1.0.7

24 Jul 21:52
Compare
Choose a tag to compare

This patch release fixes:

  • Ignoring trailing slash in component name (and its parts) #259
  • Fix broken tests #258