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