You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 1, 2020. It is now read-only.
When installing from bower/npm, the dependencies (Angular 1.3+) should be installed (if not already)
Actual behavior
Does not install Angular when installing from bower/npm
Steps to reproduce the behavior
Install from bower or npm in a new empty project, Angular 1.3 will not be installed.
I thought I had addressed this in #80, but apparently all I did was publish to npm.
Need to also add the following to package.json and bower.json.
"dependencies": {
"angular": "^1.3.0"
}
If we're interested in supporting browserify (no one has requested this so far) we'd also need to add an index.js as described in this article. That could be it's own issue, b/c we'd also want to create a test page to verify that works.
Expected behavior
Actual behavior
Steps to reproduce the behavior
Install from bower or npm in a new empty project, Angular 1.3 will not be installed.
I thought I had addressed this in #80, but apparently all I did was publish to npm.
Need to also add the following to package.json and bower.json.
If we're interested in supporting browserify (no one has requested this so far) we'd also need to add an index.js as described in this article. That could be it's own issue, b/c we'd also want to create a test page to verify that works.