Skip to content

Commit 6ec07b9

Browse files
committed
release 0.1.0
1 parent 1553dae commit 6ec07b9

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"main": "publish.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1",
8-
"styles": "rm -f src/styles/main.css && $(npm bin)/node-sass src/styles/main.scss static/styles/main.css"
8+
"styles": "rm -f src/styles/main.css && $(npm bin)/node-sass src/styles/main.scss static/styles/main.css",
9+
"build": "npm run styles"
910
},
1011
"repository": {
1112
"type": "git",

scripts/release.sh

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ next_ref="v$next_version"
2323

2424
git add -u
2525
npm run build
26-
git add -A build
26+
git add -A
2727

28-
npm test
28+
#npm test
2929

3030
update_version 'package.json' $next_version
3131

@@ -37,9 +37,4 @@ git push origin master --tags
3737

3838
echo "# Publishing docs"
3939

40-
git checkout gh-pages
41-
git merge master
42-
git push origin gh-pages
43-
git checkout master
44-
4540
npm publish

0 commit comments

Comments
 (0)