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

[enhancement] Handle ember and ember data as addons #44

Closed
jnfingerle opened this issue Nov 30, 2015 · 3 comments
Closed

[enhancement] Handle ember and ember data as addons #44

jnfingerle opened this issue Nov 30, 2015 · 3 comments

Comments

@jnfingerle
Copy link

Ember data 2.3 will be an ember-cli addon and ember will follow. Supporting dependencies in package.json as well as in bower.json would help handling this new development.

As before, I could try to get my hands dirty, but I'm not aware if there's already anything done in that direction.

@fsmanuel
Copy link

👍

@rwjblue
Copy link
Member

rwjblue commented Jan 31, 2016

0.1.0 allows customization of both npm and bower deps.

You can use configuration like:

    {
      name: 'ember-data-2.3',
      bower: {
        dependencies: {
          "ember": "release"
        },
        devDependencies: {
          "ember-cli-shims": "ember-cli/ember-cli-shims#0.1.0"
        },
        resolutions: {
          "ember": "release"
        }
      },
      npm: {
        devDependencies: {
          "ember-data": "~2.3"
        }
      }
    }

@rwjblue
Copy link
Member

rwjblue commented Jan 31, 2016

Closing this for now, happy to reopen if needed.

@rwjblue rwjblue closed this as completed Jan 31, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants