mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 00:03:27 +10:00
update vuepress deployment scripts
This commit is contained in:
14
.firebaserc
14
.firebaserc
@ -1,5 +1,17 @@
|
|||||||
{
|
{
|
||||||
"projects": {
|
"projects": {
|
||||||
"default": "rx-resume"
|
"default": "rx-resume"
|
||||||
|
},
|
||||||
|
"targets": {
|
||||||
|
"rx-resume": {
|
||||||
|
"hosting": {
|
||||||
|
"app": [
|
||||||
|
"rx-resume"
|
||||||
|
],
|
||||||
|
"docs": [
|
||||||
|
"docs-rx-resume"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
3
.gitignore
vendored
3
.gitignore
vendored
@ -17,6 +17,9 @@
|
|||||||
# tailwind
|
# tailwind
|
||||||
tailwind.css
|
tailwind.css
|
||||||
|
|
||||||
|
# vuepress
|
||||||
|
docs/.vuepress/dist
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.env.local
|
.env.local
|
||||||
|
|||||||
1
docs/.vuepress/dist/assets/js/2.3a27e3b9.js
vendored
1
docs/.vuepress/dist/assets/js/2.3a27e3b9.js
vendored
File diff suppressed because one or more lines are too long
1
docs/.vuepress/dist/assets/js/3.c02b3044.js
vendored
1
docs/.vuepress/dist/assets/js/3.c02b3044.js
vendored
@ -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}}]);
|
|
||||||
1
docs/.vuepress/dist/assets/js/4.4542e48d.js
vendored
1
docs/.vuepress/dist/assets/js/4.4542e48d.js
vendored
@ -1 +0,0 @@
|
|||||||
(window.webpackJsonp=window.webpackJsonp||[]).push([[4],{140:function(n,w,o){}}]);
|
|
||||||
1
docs/.vuepress/dist/assets/js/5.ae0d7c41.js
vendored
1
docs/.vuepress/dist/assets/js/5.ae0d7c41.js
vendored
@ -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}}]);
|
|
||||||
1
docs/.vuepress/dist/assets/js/6.d57e1933.js
vendored
1
docs/.vuepress/dist/assets/js/6.d57e1933.js
vendored
@ -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}}]);
|
|
||||||
13
docs/.vuepress/dist/assets/js/app.72da77f0.js
vendored
13
docs/.vuepress/dist/assets/js/app.72da77f0.js
vendored
File diff suppressed because one or more lines are too long
26
docs/.vuepress/dist/index.html
vendored
26
docs/.vuepress/dist/index.html
vendored
File diff suppressed because one or more lines are too long
@ -1,16 +1,35 @@
|
|||||||
{
|
{
|
||||||
"hosting": {
|
"hosting": [
|
||||||
"public": "build",
|
{
|
||||||
"ignore": [
|
"target": "app",
|
||||||
"firebase.json",
|
"public": "build",
|
||||||
"**/.*",
|
"ignore": [
|
||||||
"**/node_modules/**"
|
"firebase.json",
|
||||||
],
|
"docs",
|
||||||
"rewrites": [
|
"**/.*",
|
||||||
{
|
"**/node_modules/**"
|
||||||
"source": "**",
|
],
|
||||||
"destination": "/index.html"
|
"rewrites": [
|
||||||
}
|
{
|
||||||
]
|
"source": "**",
|
||||||
}
|
"destination": "/index.html"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"target": "docs",
|
||||||
|
"public": "docs/.vuepress/dist",
|
||||||
|
"ignore": [
|
||||||
|
"firebase.json",
|
||||||
|
"**/.*",
|
||||||
|
"**/node_modules/**"
|
||||||
|
],
|
||||||
|
"rewrites": [
|
||||||
|
{
|
||||||
|
"source": "**",
|
||||||
|
"destination": "/index.html"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -27,7 +27,11 @@
|
|||||||
"test": "react-scripts test",
|
"test": "react-scripts test",
|
||||||
"eject": "react-scripts eject",
|
"eject": "react-scripts eject",
|
||||||
"predeploy": "npm run build",
|
"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": {
|
"eslintConfig": {
|
||||||
"extends": "react-app"
|
"extends": "react-app"
|
||||||
@ -59,4 +63,4 @@
|
|||||||
"tailwindcss": "^1.2.0",
|
"tailwindcss": "^1.2.0",
|
||||||
"vuepress": "^1.4.0"
|
"vuepress": "^1.4.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user