fix: oops
This commit is contained in:
parent
a61972a871
commit
c3d3e14aa4
3 changed files with 23 additions and 23 deletions
|
@ -16,5 +16,4 @@ COPY --from=install /temp/prod/node_modules node_modules
|
|||
COPY . .
|
||||
|
||||
# Run the app.
|
||||
USER bun
|
||||
ENTRYPOINT ["bunx", "@11ty/eleventy", "--port", "6969", "--serve"]
|
||||
ENTRYPOINT ["bun", "run", "serve"]
|
||||
|
|
BIN
bun.lockb
BIN
bun.lockb
Binary file not shown.
43
package.json
43
package.json
|
@ -6,6 +6,7 @@
|
|||
"scripts": {
|
||||
"dev": "bunx @11ty/eleventy --serve",
|
||||
"build": "rm -rf dist && bunx @11ty/eleventy",
|
||||
"serve": "bunx @11ty/eleventy --port 6969 --serve",
|
||||
"docker:build": "docker build -t codewith.babesonthe.net/punkfairie/punkfairie-site:latest .",
|
||||
"docker:push": "docker push codewith.babesonthe.net/punkfairie/punkfairie-site:latest"
|
||||
},
|
||||
|
@ -13,29 +14,29 @@
|
|||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@11ty/eleventy-plugin-rss": "^1.2.0",
|
||||
"@ronilaukkarinen/stylelint-a11y": "^1.2.7",
|
||||
"@shopify/prettier-plugin-liquid": "^1.4.4",
|
||||
"@types/alpinejs": "^3.7.1",
|
||||
"prettier": "^3.2.5",
|
||||
"stylelint": "^15.6.3",
|
||||
"stylelint-config-recess-order": "^4.0.0",
|
||||
"stylelint-config-standard": "^33.0.0",
|
||||
"stylelint-config-standard-scss": "^9.0.0",
|
||||
"stylelint-declaration-strict-value": "^1.9.2",
|
||||
"stylelint-plugin-defensive-css": "^0.6.0",
|
||||
"stylelint-plugin-logical-css": "^0.12.0",
|
||||
"stylelint-rem-over-px": "^1.0.0"
|
||||
"@ronilaukkarinen/stylelint-a11y": "^1.2.9",
|
||||
"@shopify/prettier-plugin-liquid": "^1.5.2",
|
||||
"@types/alpinejs": "^3.13.10",
|
||||
"prettier": "^3.3.3",
|
||||
"stylelint": "^16.10.0",
|
||||
"stylelint-config-recess-order": "^5.1.1",
|
||||
"stylelint-config-standard": "^36.0.1",
|
||||
"stylelint-config-standard-scss": "^13.1.0",
|
||||
"stylelint-declaration-strict-value": "^1.10.6",
|
||||
"stylelint-plugin-defensive-css": "^1.0.4",
|
||||
"stylelint-plugin-logical-css": "^1.2.1",
|
||||
"stylelint-rem-over-px": "^1.0.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@11ty/eleventy": "^2.0.1",
|
||||
"@11ty/eleventy-plugin-vite": "^4.0.0",
|
||||
"alpinejs": "^3.12.2",
|
||||
"@11ty/eleventy": "^3.0.0",
|
||||
"@11ty/eleventy-plugin-rss": "^2.0.2",
|
||||
"@11ty/eleventy-plugin-vite": "^5.0.1",
|
||||
"alpinejs": "^3.14.3",
|
||||
"cssnano": "^7.0.6",
|
||||
"eleventy-plugin-automatic-noopener": "^2.0.2",
|
||||
"eleventy-sass": "^2.2.1",
|
||||
"esbuild": "0.17.19",
|
||||
"postcss-preset-env": "^8.4.2",
|
||||
"cssnano": "^6.0.1",
|
||||
"postcss": "^8.4.31"
|
||||
"eleventy-sass": "3.0.0-beta.0",
|
||||
"esbuild": "0.24.0",
|
||||
"postcss": "^8.4.48",
|
||||
"postcss-preset-env": "^10.0.9"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue