-
Notifications
You must be signed in to change notification settings - Fork 13
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
CLI foundations #77
CLI foundations #77
Conversation
.travis.yml
Outdated
@@ -4,7 +4,9 @@ dist: trusty | |||
sudo: required | |||
node_js: stable | |||
install: | |||
- npm install | |||
- bower install --production | |||
- npm install -g bower pulp [email protected] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
npm i
will install this libs too so there should be no need for this.
also in travis, binaries of all installed npm libs is available in PATH
package.json
Outdated
@@ -4,6 +4,7 @@ | |||
"description": "", | |||
"main": "index.js", | |||
"scripts": { | |||
"preinstall": "bower install --production && pulp build -t chanterelle.js", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you need postinstall
yeah i think postinstall will allow me to not have to install bower, etc.
beforehand. cheers!
…On Tue, Jun 5, 2018 at 11:14 Irakli Safareli ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In package.json
<#77 (comment)>:
> @@ -4,6 +4,7 @@
"description": "",
"main": "index.js",
"scripts": {
+ "preinstall": "bower install --production && pulp build -t chanterelle.js",
I think you need postinstall
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#77 (review)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ACyqU--ClhUEdMFmg4F9Lc0tJXmiy_6dks5t5ryNgaJpZM4UbMVq>
.
|
is this done? |
npm i -g
;)