-
Notifications
You must be signed in to change notification settings - Fork 9
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
Windows-Friendly Build Script #36
Comments
I'm OK with I have this line in my shell zsh/zshrc.symlink#L56-L57 # npm
export PATH="./node_modules/.bin:$PATH" It allows me to run locally installed packages straightforward way: > release patch --run Without Maybe I should add smth like: "build-win": "rimraf bin && babel src --out-dir bin" ? |
NPM sets the proper permissions (777) on files in the
As such, I am having trouble understanding the need to Also, |
Oh.. I didn't know that As for E.g. I start new tab in my Last login: Thu Jan 7 17:27:50 on ttys005
> alexkval/
> echo $PATH
/Users/alexkval/node_modules/.bin:/Users/alexkval/.nvm/versions/node/v4.2.3/bin:./bin:/usr/local/bin:/usr/local/sbin:/Users/alexkval/.dotfiles/bin ...etc then I change project dir: > z es6-prototype-proj
es6-prototype-proj/ on master
> release
zsh: command not found: release but as you can see - the script exist: > l node_modules/release-script/bin/release.js
-rwxr-xr-x 1 alexkval staff 16K Jan 4 14:01 node_modules/release-script/bin/release.js see ? It doesn't work for me 😄 I need relative, not absolute But when I use > z es6-prototype-proj
es6-prototype-proj/ on master
> release
Must provide either a version bump type, "preid" or "--only-docs"
Usage: node_modules/.bin/release <version> [--preid <identifier>]
or
... etc |
In your package.json, you have the following build script:
rm
andchmod
don't work on Windows.rm
replacement, I recommend rimrafchmod
onrelease.js
?The text was updated successfully, but these errors were encountered: