Skip to content

Commit

Permalink
Package upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
TobbenTM committed Jan 14, 2024
1 parent 04a62d9 commit 5f0b234
Show file tree
Hide file tree
Showing 7 changed files with 4,996 additions and 4,087 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [14]
node: [20]

steps:
- name: Checkout 🛎
Expand Down Expand Up @@ -51,13 +51,3 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist

- name: Deploy 🧱
uses: appleboy/[email protected]
with:
host: moonwater.no
username: gh-deploy
key: ${{ secrets.SSH_KEY }}
source: "./dist/*"
target: "/static/moonwater"
strip_components: 1
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [14]
node: [20]

steps:
- name: Checkout 🛎
Expand Down Expand Up @@ -42,4 +42,3 @@ jobs:

- name: Run linter 👀
run: yarn lint

2 changes: 1 addition & 1 deletion content/articles/fastspring-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -373,4 +373,4 @@ If you want to redirect the user to a page or do anything after successful order

Hopefully this guide serves as an easy jumpstart to building modern stores with Fastspring, it's really not as hard as it might seem, it's just a matter of navigating a lot of documentation, making sense of the order & product structures received by the SBL.

_Do you have feedback or comments on this article? Reach out at [hei@månevann.no](mailto:hei@månevann.no) (or [[email protected]](mailto:[email protected]))_
_Do you have feedback or comments on this article? Reach out at [[email protected]](mailto:[email protected])_.
5 changes: 3 additions & 2 deletions nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default {
{ hid: 'description', name: 'description', content: '' },
{ name: 'msapplication-TileColor', content: '#da532c' },
{ name: 'theme-color', content: '#f9fafb' },
{ hid: 'og:image', property: 'og:image', content: 'https://xn--mnevann-exa.no/share.png' }
{ hid: 'og:image', property: 'og:image', content: 'https://moonwater.no/share.png' }
],
link: [
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' },
Expand Down Expand Up @@ -44,6 +44,7 @@ export default {
'@nuxtjs/eslint-module',
// https://go.nuxtjs.dev/tailwindcss
'@nuxtjs/tailwindcss',
'@nuxt/postcss8',
// https://sitemap.nuxtjs.org/guide/setup
'@nuxtjs/sitemap'
],
Expand All @@ -65,7 +66,7 @@ export default {
},

sitemap: {
hostname: 'https://xn--mnevann-exa.no/',
hostname: 'https://moonwater.no/',
gzip: true,
routes: async () => {
const { $content } = require('@nuxt/content')
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,21 @@
"dependencies": {
"@nuxt/content": "^1.14.0",
"@nuxtjs/sitemap": "^2.4.0",
"@tailwindcss/typography": "^0.1.4",
"@tailwindcss/typography": "^0.5.10",
"core-js": "^3.9.1",
"nuxt": "^2.15.3",
"prism-themes": "^1.7.0",
"vue-plausible": "^1.3.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@nuxt/postcss8": "^1.1.3",
"@nuxtjs/eslint-config": "^8.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/tailwindcss": "^4.0.1",
"@nuxtjs/tailwindcss": "^6.10.4",
"eslint": "^8.5.0",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-vue": "^8.2.0",
"postcss": "^8.2.8"
"postcss": "^8.4.33"
}
}
8 changes: 7 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
module.exports = {
purge: [],
content: [
'./assets/**/*.css',
'./pages/**/*.vue',
'./components/**/*.vue',
'./layouts/**/*.vue',
'./content/**/*.md'
],
darkMode: 'class',
theme: {
extend: {
Expand Down
Loading

0 comments on commit 5f0b234

Please sign in to comment.