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",
"version": "0.0.1",
"scripts": {
"dev": "npm run wallpapers && astro dev",
"start": "npm run wallpapers && astro dev",
"build": "npm run wallpapers && astro build",
"preview": "npm run wallpapers && astro preview",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"build:prod": "npm run wallpapers && astro build",
"preview": "astro preview",
"astro": "astro",
"wallpapers": "deno run --allow-read --allow-net --allow-write utils/wallpapers.ts"
},