File tree 5 files changed +29
-14
lines changed
5 files changed +29
-14
lines changed Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env sh
2
+
3
+ # abort on errors
4
+ set -e
5
+
6
+ # build
7
+ yarn build
8
+
9
+ # navigate into the build output directory
10
+ cd dist
11
+
12
+ # if you are deploying to a custom domain
13
+ # echo 'www.example.com' > CNAME
14
+
15
+ git init
16
+ git add -A
17
+ git commit -m ' deploy'
18
+
19
+ # if you are deploying to https://<USERNAME>.github.io/<REPO>
20
+ git push -f git@github.com:emilkowalski/css-effects-snippets.git master:gh-pages
21
+
22
+ cd -
Original file line number Diff line number Diff line change 5
5
< meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6
6
< meta name ="viewport " content ="width=device-width,initial-scale=1.0 ">
7
7
< link rel ="icon " href ="<%= BASE_URL %>favicon.png ">
8
- < title > CSSanimationSnipets .</ title >
8
+ < title > CSSeffectsSnipets .</ title >
9
9
</ head >
10
10
< body >
11
11
< noscript >
Original file line number Diff line number Diff line change 12
12
<Box :rawCss =" rawCss.arrowBounce" className =" arrowBounce" ><font-awesome-icon icon =" arrow-down" /></Box >
13
13
<Box :rawCss =" rawCss.gradientBorder" className =" gradientBorder " >Hover me</Box >
14
14
<Box :rawCss =" rawCss.buttonLeft" className =" buttonLeft" ><span class =" buttonLeftSpan" >Hover me</span ></Box >
15
- <Box :rawCss =" rawCss.buttonLeft " className =" siblingFade" ><span >Item 1 </span ><span >Item 2 </span ></Box >
15
+ <Box :rawCss =" rawCss.siblingFade " className =" siblingFade" ><span >Item 1 </span ><span >Item 2 </span ></Box >
16
16
</div >
17
17
</div >
18
18
</template >
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<div class =" wrapper" >
3
- <h1 >CSSanimationSnipets <span >.</span ></h1 >
3
+ <h1 >CSSeffectsSnipets <span >.</span ></h1 >
4
4
<div class =" links" >
5
- <a href =" https://github.com/emilkowalski/css-animation-snippets" >Github</a >
6
- <a href =" https://github.com/emilkowalski/css-animation-snippets/issues/new" >Share your ideas!</a >
5
+ <a href =" https://github.com/emilkowalski/css-animation-snippets" target = " _blank " >Github</a >
6
+ <a href =" https://github.com/emilkowalski/css-animation-snippets/issues/new" target = " _blank " >Share your ideas!</a >
7
7
</div >
8
8
</div >
9
9
</template >
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
- configureWebpack : {
3
- rules : [
4
- {
5
- test : / \. t x t $ / i,
6
- use : 'raw-loader' ,
7
- } ,
8
- ] ,
9
- } ,
10
- } ;
2
+ publicPath : './' ,
3
+ }
You can’t perform that action at this time.
0 commit comments