update vuepress deployment scripts

This commit is contained in:
Amruth Pillai 2020-03-29 13:32:38 +05:30
parent 7c0ea86647
commit a8ffbb782a
No known key found for this signature in database
GPG Key ID: 09959E21662F51A0
11 changed files with 76 additions and 40 deletions

View File

@ -1,5 +1,17 @@
{
"projects": {
"default": "rx-resume"
},
"targets": {
"rx-resume": {
"hosting": {
"app": [
"rx-resume"
],
"docs": [
"docs-rx-resume"
]
}
}
}
}
}

3
.gitignore vendored
View File

@ -17,6 +17,9 @@
# tailwind
tailwind.css
# vuepress
docs/.vuepress/dist
# misc
.DS_Store
.env.local

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window.webpackJsonp=window.webpackJsonp||[]).push([[3],{164:function(t,e,n){},242:function(t,e,n){"use strict";var i=n(164);n.n(i).a},246:function(t,e,n){"use strict";n.r(e);var i={functional:!0,props:{type:{type:String,default:"tip"},text:String,vertical:{type:String,default:"top"}},render:function(t,e){var n=e.props,i=e.slots;return t("span",{class:["badge",n.type],style:{verticalAlign:n.vertical}},n.text||i().default)}},r=(n(242),n(27)),a=Object(r.a)(i,void 0,void 0,!1,null,"15b7b770",null);e.default=a.exports}}]);

View File

@ -1 +0,0 @@
(window.webpackJsonp=window.webpackJsonp||[]).push([[4],{140:function(n,w,o){}}]);

View File

@ -1 +0,0 @@
(window.webpackJsonp=window.webpackJsonp||[]).push([[5],{244:function(t,e,s){"use strict";s.r(e);var n=["There's nothing here.","How did we get here?","That's a Four-Oh-Four.","Looks like we've got some broken links."],o={methods:{getMsg:function(){return n[Math.floor(Math.random()*n.length)]}}},i=s(27),h=Object(i.a)(o,(function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"theme-container"},[e("div",{staticClass:"theme-default-content"},[e("h1",[this._v("404")]),this._v(" "),e("blockquote",[this._v(this._s(this.getMsg()))]),this._v(" "),e("RouterLink",{attrs:{to:"/"}},[this._v("\n Take me home.\n ")])],1)])}),[],!1,null,null,null);e.default=h.exports}}]);

View File

@ -1 +0,0 @@
(window.webpackJsonp=window.webpackJsonp||[]).push([[6],{245:function(t,e,s){"use strict";s.r(e);var r=s(27),l=Object(r.a)({},(function(){var t=this.$createElement,e=this._self._c||t;return e("ContentSlotsDistributor",{attrs:{"slot-key":this.$parent.slotKey}},[e("h1",{attrs:{id:"hello-vuepress"}},[e("a",{staticClass:"header-anchor",attrs:{href:"#hello-vuepress"}},[this._v("#")]),this._v(" Hello VuePress")])])}),[],!1,null,null,null);e.default=l.exports}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,16 +1,35 @@
{
"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
"hosting": [
{
"target": "app",
"public": "build",
"ignore": [
"firebase.json",
"docs",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
},
{
"target": "docs",
"public": "docs/.vuepress/dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
]
}

View File

@ -27,7 +27,11 @@
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "firebase deploy"
"deploy": "firebase deploy",
"predeploy:app": "npm run build",
"deploy:app": "firebase deploy --only hosting:app",
"predeploy:docs": "npm run docs:build",
"deploy:docs": "firebase deploy --only hosting:docs"
},
"eslintConfig": {
"extends": "react-app"
@ -59,4 +63,4 @@
"tailwindcss": "^1.2.0",
"vuepress": "^1.4.0"
}
}
}