1
0
Fork 0
This commit is contained in:
Matthias Kretschmann 2022-09-20 23:38:12 +01:00
parent cb13f866b9
commit 9ef2f96ff0
Signed by: m
GPG Key ID: 606EEEF3C479A91F
3 changed files with 4 additions and 4 deletions

2
package-lock.json generated
View File

@ -59483,7 +59483,7 @@
"nord-visual-studio-code": {
"version": "git+ssh://git@github.com/arcticicestudio/nord-visual-studio-code.git#69b80f5196b8c3feb6df7f67e4225adb3040e3fb",
"integrity": "sha512-5G0/5Y/Tfewgs6yTbkpc6nLJpoHYSakscUV5RdgLDH5vT3O5IIQeP+SV3QkIkfTErCLzFvF0OULC1dRjAGfarA==",
"from": "nord-visual-studio-code@github:arcticicestudio/nord-visual-studio-code#69b80f5196b8c3feb6df7f67e4225adb3040e3fb"
"from": "nord-visual-studio-code@github:arcticicestudio/nord-visual-studio-code"
},
"normalize-package-data": {
"version": "2.5.0",

View File

@ -18,7 +18,7 @@
"lint:md": "markdownlint './**/*.{md,markdown}' --ignore './{node_modules,public,.cache,.git,coverage}/**/*'",
"format": "prettier --ignore-path .gitignore --write '**/*.{js,jsx,ts,tsx,md,json,css}'",
"tsc": "tsc --noEmit",
"deploy": "./scripts/deploy-s3.sh",
"deploy": "bash ./scripts/deploy-s3.sh",
"new": "ts-node ./scripts/new.ts"
},
"browserslist": [

View File

@ -11,7 +11,7 @@ SITEMAP_URL="https%3A%2F%2Fkremalicious.com%2Fsitemap.xml"
set -e;
function s3sync {
aws s3 sync ./public s3://"$1" \
aws s3 sync public/. s3://"$1" \
--include "*" \
--exclude "*.html" \
--exclude "sw.js" \
@ -28,7 +28,7 @@ function s3sync {
--delete \
--acl public-read
aws s3 sync ./public s3://"$1" \
aws s3 sync public/. s3://"$1" \
--exclude "*" \
--include "*.html" \
--include "sw.js" \