Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update generator-donejs to the latest version 🚀 #62

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

greenkeeper[bot]
Copy link
Contributor

@greenkeeper greenkeeper bot commented Feb 22, 2018

Version 2.0.0 of generator-donejs was just published.

Dependency generator-donejs
Current Version 1.1.0
Type devDependency

The version 2.0.0 is not covered by your current version range.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of generator-donejs.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


Commits

The new version differs by 25 commits.

  • 98c414e 2.0.0
  • 74810bc Merge pull request #280 from donejs/major
  • 0f3141d 2.0.0-pre.5
  • d48a6d0 Merge pull request #279 from donejs/can-debug
  • ae474c9 Use latest pre-release version of donejs-cli
  • 87813a5 Conditionally load can-debug in development
  • c19d05e 2.0.0-pre.4
  • ebd9614 Merge pull request #277 from donejs/tilde
  • 65152bb Update test fixtures to use tilde
  • 8fb639b Use ~ instead of app name in imports
  • db1fd1f Merge pull request #276 from donejs/nodeenv
  • cc9fbe1 Provide env.NODE_ENV as a default AppViewModel property
  • 834488d 2.0.0-pre.3
  • 83294c5 Merge pull request #275 from donejs/upd
  • 179df21 Update tested node versions

There are 25 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper bot 🌴

greenkeeper bot added a commit that referenced this pull request Feb 22, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Feb 22, 2018

Version 2.1.0 just got published.

Update to this version instead 🚀

Commits

The new version differs by 3 commits.

  • c85bfeb 2.1.0
  • 65b7772 Merge pull request #281 from donejs/use-defaults
  • 823b6ae Use prompt defaults when option is passed in

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 15, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Nov 15, 2018

Update to this version instead 🚀

Release Notes for 3.0.0

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

Commits

The new version differs by 38 commits.

  • b76ca51 3.0.0
  • 921e67d Merge pull request #298 from donejs/major
  • 78b2fc4 Merge branch 'master' into major
  • cc5f6d0 3.0.0-pre.8
  • ad0490e Merge pull request #297 from donejs/model
  • 2a0296d Update fixture templates
  • 7b23bc4 3.0.0-pre.7
  • d3f2779 Merge pull request #295 from donejs/exp
  • 4c6fcfb Name the main application viewmodel
  • f4f3ce9 Export the ViewModel and Component from modlets
  • 75b8405 Merge branch 'major' of github.com:donejs/generator-donejs into major
  • 7d300d6 3.0.0-pre.6
  • 7511d9e Merge pull request #294 from donejs/deep-component
  • 3af9c2e Allow .component files in nested folders to be pages
  • d401bb0 3.0.0-pre.5

There are 38 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 14, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Dec 14, 2018

Update to this version instead 🚀

Release Notes for 3.1.0

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>
Commits

The new version differs by 5 commits.

  • 50b4ac4 3.1.0
  • 06a0cfe Merge pull request #302 from donejs/demo
  • b779f57 Merge pull request #301 from donejs/model-name
  • 06c462e Update demo pages to use can-component constructors
  • a223d4b Give model types a function name

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 27, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Dec 27, 2018

Update to this version instead 🚀

Release Notes for 3.2.0

Configures steal to use the can package for stache files.

Commits

The new version differs by 4 commits.

  • 34e5060 3.2.0
  • 94daa09 Merge pull request #303 from donejs/can-plugin
  • 10a7027 Update test to use can instead of steal-stache
  • c15d645 Use can plugin for steal

See the full diff

greenkeeper bot added a commit that referenced this pull request Mar 27, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Mar 27, 2019

Update to this version instead 🚀

Release Notes for Component name with same name as the app

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

Commits

The new version differs by 3 commits.

  • 83843b8 3.3.0
  • c9730bf Merge pull request #304 from donejs/1175-component-name-as-project
  • 530e122 component with same name as app

See the full diff

greenkeeper bot added a commit that referenced this pull request Apr 24, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Apr 24, 2019

Update to this version instead 🚀

Commits

The new version differs by 3 commits.

  • 2a24617 3.4.0
  • 0234264 Merge pull request #305 from donejs/plugin-scoped-project-support
  • e25ed7f Handle scoped name of projects

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Jul 4, 2019

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Jul 4, 2019
greenkeeper bot added a commit that referenced this pull request Nov 19, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Nov 19, 2019

Update to this version instead 🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants