package.json: dont always build wallpapers

This commit is contained in:
Philippe Loctaux 2023-05-18 00:01:14 +02:00
parent 83d5d1491d
commit 318c9ab0bd

View file

@ -3,10 +3,11 @@
"type": "module", "type": "module",
"version": "0.0.1", "version": "0.0.1",
"scripts": { "scripts": {
"dev": "npm run wallpapers && astro dev", "dev": "astro dev",
"start": "npm run wallpapers && astro dev", "start": "astro dev",
"build": "npm run wallpapers && astro build", "build": "astro build",
"preview": "npm run wallpapers && astro preview", "build:prod": "npm run wallpapers && astro build",
"preview": "astro preview",
"astro": "astro", "astro": "astro",
"wallpapers": "deno run --allow-read --allow-net --allow-write utils/wallpapers.ts" "wallpapers": "deno run --allow-read --allow-net --allow-write utils/wallpapers.ts"
}, },