Skip to content

Commit

Permalink
Merge pull request #31 from ShaunaGordon/enhancements
Browse files Browse the repository at this point in the history
Revamp
  • Loading branch information
ShaunaGordon authored Dec 11, 2024
2 parents 33992eb + c834d9f commit 43e4128
Show file tree
Hide file tree
Showing 33 changed files with 2,890 additions and 12,016 deletions.
37 changes: 0 additions & 37 deletions .generator/templates/component.vue

This file was deleted.

10 changes: 5 additions & 5 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,25 @@ jobs:

strategy:
matrix:
node-version: [16.x, 17.x]
node-version: [14.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Setup Yarn
# You may pin to the exact commit or the version.
# uses: mskelton/setup-yarn@b0673acb4e37f20265fbddbf7567110ebb313605
uses: mskelton/setup-yarn@v1.2.1
uses: mskelton/setup-yarn@v3
- name: Build
run: yarn build
- run: cp CNAME ./dist/CNAME
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@3.7.1
uses: JamesIves/github-pages-deploy-action@4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
Expand Down
5 changes: 3 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"gitdoc.enabled": false
}
"gitdoc.enabled": false,
"pieces.cloudCapabilities": "Blended"
}
24 changes: 0 additions & 24 deletions generator.config.js

This file was deleted.

10 changes: 5 additions & 5 deletions public/index.html → index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="shortcut icon" href="<%= webpackConfig.output.publicPath %>/img/avatar.png">
<link rel="shortcut icon" href="/img/avatar.png">
<link href="https://fonts.googleapis.com/css?family=Forum|Source+Sans+Pro" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.rawgit.com/konpa/devicon/df6431e323547add1b4cf45992913f15286456d3/devicon.min.css">
<link rel="stylesheet" type='text/css' href="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/devicon.min.css" />
<link rel="stylesheet" type="text/css" href="/main.css" />
<script defer src="https://use.fontawesome.com/releases/v5.15.2/js/all.js"></script>
<title>Interactive Resume</title>
<title>Resume</title>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->

<script type="module" src="/src/main.js"></script>
</body>
</html>
91 changes: 30 additions & 61 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,68 +1,55 @@
{
"name": "resume",
"version": "0.2.0",
"version": "0.6.0",
"private": true,
"type": "module",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"make": "vue invoke generator",
"test": "vue-cli-service test:unit"
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"d3": "^6.2.0",
"register-service-worker": "^1.7.1",
"vue": "^3.0.0-0",
"vuex": "^4.0.0-0"
"chart.js": "^4.4.3",
"d3": "^7.9.0",
"marked": "^15.0.3",
"pinia": "^2.2.2",
"ramda": "^0.30.1",
"vue": "^3.5.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "^4.5.7",
"@vue/cli-plugin-pwa": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0-0",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^2.0.0-0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^7.0.0-0",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"typescript": "~3.9.3",
"vue-cli-plugin-generator": "^1.0.2",
"vue-jest": "^5.0.0-0"
},
"babel": {
"presets": [
"@vue/app"
]
"@stylistic/eslint-plugin-js": "^2.11.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^10.1.0",
"eslint": "^9.16.0",
"eslint-plugin-vue": "^9.23.0",
"prettier": "^3.2.5",
"vite": "^6.0.3",
"vite-plugin-vue-devtools": "^7.3.1"
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:vue/essential",
"@vue/standard",
"plugin:vue/vue3-essential"
"plugin:vue/vue3-essential",
"plugin:@stylistic/js"
],
"rules": {
"no-trailing-spaces": [
"@stylistic/js/no-trailing-spaces": [
2,
{
"skipBlankLines": true
}
],
"semi": 0,
"indent": [
"@stylistic/js/semi": 0,
"@stylistic/js/indent": [
"error",
4
],
"space-before-function-paren": [
"@stylistic/js/space-before-function-paren": [
2,
{
"anonymous": "never",
Expand All @@ -73,30 +60,12 @@
},
"env": {
"node": true
},
"parserOptions": {
"parser": "babel-eslint"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 2%",
"last 2 versions",
"not ie <= 9"
]
],
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}
Loading

0 comments on commit 43e4128

Please sign in to comment.