Move node_modules and package.json into app directory
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Elara 2023-08-16 12:48:12 -07:00
parent acf0d6fac5
commit b3e49a1561
2 changed files with 3 additions and 1 deletions

View File

@ -7,6 +7,8 @@ steps:
commands: commands:
- npm i - npm i
- npm run build - npm run build
- mkdir app
- mv node_modules build package.json app
- tar czf app.tar.gz app/ - tar czf app.tar.gz app/
publish: publish:

View File

@ -16,7 +16,7 @@ const config = {
], ],
kit: { kit: {
adapter: adapter({out: 'app',}), adapter: adapter(),
env: { env: {
publicPrefix: "LURE_WEB_" publicPrefix: "LURE_WEB_"
}, },