We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 495bf93 commit 1d34b83Copy full SHA for 1d34b83
.gitignore
@@ -44,4 +44,6 @@ Thumbs.db
44
45
# output files
46
demo/dist
47
-bundles
+bundles
48
+
49
+gh-pages/
scripts/deploy-gh-pages.sh
@@ -0,0 +1,21 @@
1
+npm run compile
2
3
+git clone -b gh-pages --single-branch [email protected]:yhnavein/ng2-semantic-ui.git gh-pages
4
5
+cd gh-pages
6
7
+rm -rf assets/
8
+rm *
9
10
+cp -r ../demo/dist/* .
11
12
+# Stage all files
13
+git add -A .
14
15
+git commit -a -m "gh-pages update"
16
17
+git push
18
19
+cd ../
20
21
+rm -rf gh-pages/
0 commit comments