-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ran prettier and eslint across the board
- Loading branch information
ArsalaBangash
committed
Oct 5, 2020
1 parent
cbc62a0
commit 69fceae
Showing
48 changed files
with
555 additions
and
8,950 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,63 @@ | ||
module.exports = { | ||
title: "Grey Software", | ||
description: "", | ||
title: 'Grey Software', | ||
description: '', | ||
head: [ | ||
["link", { rel: "icon", href: "/logos/logo.png" }], | ||
["link", { rel: "stylesheet", href: "/font-awesome-all.css" }], | ||
["link", { rel: "stylesheet", href: "/font-awesome-all.css" }], | ||
['link', {rel: 'icon', href: '/logos/logo.png'}], | ||
['link', {rel: 'stylesheet', href: '/font-awesome-all.css'}], | ||
['link', {rel: 'stylesheet', href: '/font-awesome-all.css'}], | ||
[ | ||
"meta", | ||
{ name: "viewport", content: "width=device-width, initial-scale=1" }, | ||
'meta', | ||
{name: 'viewport', content: 'width=device-width, initial-scale=1'}, | ||
], | ||
[ | ||
'script', | ||
{ | ||
src: 'https://plausible.io/js/plausible.js', | ||
dataDomain: 'org.grey.software', | ||
async: true, | ||
defer: true, | ||
}, | ||
], | ||
["script", { src: "https://plausible.io/js/plausible.js", dataDomain: "org.grey.software", async: true, defer: true }] | ||
], | ||
themeConfig: { | ||
logo: "/logos/logo.png", | ||
repo: "https://github.com/grey-software/org", | ||
logo: '/logos/logo.png', | ||
repo: 'https://github.com/grey-software/org', | ||
editLinks: true, | ||
editLinkText: "Help us improve the Grey Software website!", | ||
lastUpdated: "Last Updated", | ||
searchPlaceholder: "Explore...", | ||
editLinkText: 'Help us improve the Grey Software website!', | ||
lastUpdated: 'Last Updated', | ||
searchPlaceholder: 'Explore...', | ||
smoothScroll: true, | ||
nav: [ | ||
{ text: "Vision", link: "/about/" }, | ||
{ text: "FAQ", link: "/faq/" }, | ||
{ text: "Projects", link: "/projects/" }, | ||
{ text: "Team", link: "/team/" }, | ||
{ text: "Weekly Updates", link: "/this-week/" }, | ||
{text: 'Vision', link: '/about/'}, | ||
{text: 'FAQ', link: '/faq/'}, | ||
{text: 'Projects', link: '/projects/'}, | ||
{text: 'Team', link: '/team/'}, | ||
{text: 'Weekly Updates', link: '/this-week/'}, | ||
{ | ||
text: "LinkedIn", | ||
link: "https://www.linkedin.com/company/grey-software", | ||
text: 'LinkedIn', | ||
link: 'https://www.linkedin.com/company/grey-software', | ||
}, | ||
|
||
{ text: "AngelList", link: "https://angel.co/company/grey-software" }, | ||
{text: 'AngelList', link: 'https://angel.co/company/grey-software'}, | ||
], | ||
}, | ||
dest: ".vuepress/dist", | ||
dest: '.vuepress/dist', | ||
locales: { | ||
// The key is the path for the locale to be nested under. | ||
// As a special case, the default locale can use '/' as its path. | ||
"/": { | ||
lang: "en-US", // this will be set as the lang attribute on <html> | ||
title: "Grey Software", | ||
description: "The org website for Grey Software", | ||
'/': { | ||
lang: 'en-US', // this will be set as the lang attribute on <html> | ||
title: 'Grey Software', | ||
description: 'The org website for Grey Software', | ||
}, | ||
}, | ||
chainWebpack: (config) => { | ||
config.module.rules.delete("svg"); | ||
config.module.rules.delete('svg'); | ||
config.module | ||
.rule("svg") | ||
.rule('svg') | ||
.test(/\.svg$/) | ||
.use("vue-svg-loader") | ||
.loader("vue-svg-loader") | ||
.use('vue-svg-loader') | ||
.loader('vue-svg-loader') | ||
.end(); | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
import VueTypedJs from '../node_modules/vue-typed-js' | ||
import VueTypedJs from '../node_modules/vue-typed-js'; | ||
|
||
export default ({ | ||
Vue, // the version of Vue being used in the VuePress app | ||
options, // the options for the root Vue instance | ||
router, // the router instance for the app | ||
siteData // site metadata | ||
Vue, // the version of Vue being used in the VuePress app | ||
options, // the options for the root Vue instance | ||
router, // the router instance for the app | ||
siteData, // site metadata | ||
}) => { | ||
if (typeof process === 'undefined') { // process is undefined in a browser | ||
Vue.use(VueTypedJs) | ||
} | ||
}; | ||
if (typeof process === 'undefined') { | ||
// process is undefined in a browser | ||
Vue.use(VueTypedJs); | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.