Skip to content

Commit

Permalink
automação npm
Browse files Browse the repository at this point in the history
  • Loading branch information
Luigui Delyer committed Apr 8, 2017
1 parent 3948a2e commit 0966533
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.DS_Store
node_modules/
dist/
npm/
npm-debug.log
yarn-error.log
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ build: node_modules
deploy: build
./deploy.sh

publish:
./npm.sh

clean:
rm -rf dist

Expand Down
42 changes: 42 additions & 0 deletions npm.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
###############################################################################
# Copyright (c) 2015 Yorkshire Interactive (yorkshireinteractive.com)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
###############################################################################

set -e
GITURL=`git config remote.origin.url`
rm -rf npm
mkdir npm
mkdir npm/src
mkdir npm/src/components
mkdir npm/src/sass
cp package.json npm/package.json
cp README.md npm/README.md
cp readme-image.png npm/readme-image.png
cp -rf src/components/* npm/src/components/
cp -rf src/sass/* npm/src/sass/
cd npm
rm -rf .git/
git init
git remote add origin $GITURL
git add .
git commit -am "npm publish"
git push origin master:npm --force
npm publish

0 comments on commit 0966533

Please sign in to comment.