Rename npm scripts to environment-prefixed names (dev:/prod:/devtoprod:/prodto:dev:/infra:).

Align package.json scripts and their references across scripts/, infra/, and db/ SQL with the dev-first workflow naming scheme.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Danila Khodjaef
2026-07-07 12:37:21 +03:00
co-authored by Cursor
parent a2263ca186
commit 96285737f5
16 changed files with 73 additions and 75 deletions
+5 -5
View File
@@ -1,6 +1,6 @@
/**
* Seed historical eras, art movements, artists, periods, and flagship paintings.
* Run: npm run seed
* Run: npm run dev:seed
* Flags: --force (re-seed), --fetch-images (download portraits and paintings from Wikipedia)
*/
require('dotenv').config();
@@ -180,12 +180,12 @@ async function main() {
console.log(` Portraits downloaded: ${stats.portraitsFetched}`);
console.log(` Painting images: ${stats.imagesFetched}`);
} else {
console.log(' Run with --fetch-images to download artwork files, or npm run fetch-images later.');
console.log(' Run with --fetch-images to download artwork files, or npm run dev:fetch-images later.');
}
console.log('\nNext steps:');
console.log(' npm run fetch-artist-bios');
console.log(' npm run expand-catalog');
console.log(' npm run update-influences');
console.log(' npm run dev:fetch-artist-bios');
console.log(' npm run dev:expand-catalog');
console.log(' npm run dev:update-influences');
}
main()