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
Idea: lineman install which would accept plugin names to install.
$ lineman install angular
which would be equivalent to:
$ npm install --save-dev lineman-angular
This would become even more powerful when coupled with #217. After running npm install ... it would automatically execute npm run-script <plugin> configure.
Thus, the workflow for a brand new lineman project could be:
lineman new myAngularApp && cd myAngularApp
lineman install angular
Which would create the lineman project, install the lineman-angular plugin (and save to package.json), and run the lineman-angular configure script which creates the conventional angular project directory/file structure.
The text was updated successfully, but these errors were encountered:
Yup. Sounds good. It'll end up being a trivial wrapper around npm install but I'd support the effort if it also included plugin discovery to help people see what plugins were available.
On Sun, Feb 23, 2014 at 2:20 PM, Jason Karns [email protected]
wrote:
Idea: lineman install which would accept plugin names to install.
$ lineman install angular
which would be equivalent to:
$ npm install --save-dev lineman-angular
This would become even more powerful when coupled with #217. After running npm install ... it would automatically execute npm run-script <plugin> configure.
Thus, the workflow for a brand new lineman project could be:
lineman new myAngularApp && cd myAngularApp
lineman install angular
Which would create the lineman project, install the lineman-angular plugin (and save to package.json), and run the lineman-angular configure script which creates the conventional angular project directory/file structure.
Reply to this email directly or view it on GitHub: #218
Idea:
lineman install
which would accept plugin names to install.which would be equivalent to:
This would become even more powerful when coupled with #217. After running
npm install ...
it would automatically executenpm run-script <plugin> configure
.Thus, the workflow for a brand new lineman project could be:
Which would create the lineman project, install the lineman-angular plugin (and save to
package.json
), and run the lineman-angularconfigure
script which creates the conventional angular project directory/file structure.The text was updated successfully, but these errors were encountered: