1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00

refactor: Update build scripts and asset management across packages (#2558)

This commit is contained in:
Paweł Kuna
2025-12-02 18:51:54 +01:00
committed by GitHub
parent f264470d8f
commit f9d6076014
4 changed files with 31 additions and 12 deletions

View File

@@ -3,7 +3,8 @@
"version": "1.4.0",
"private": true,
"scripts": {
"build": "pnpm run clean && pnpm run css && pnpm run js && pnpm run html",
"build": "pnpm run clean && pnpm run build-assets && pnpm run html",
"build-assets": "concurrently \"pnpm run css\" \"pnpm run js\"",
"dev": "pnpm run clean && pnpm run watch",
"watch": "concurrently \"pnpm run watch-html\" \"pnpm run watch-css\" \"pnpm run watch-js\"",
"watch-html": "cross-env NODE_ENV=development eleventy --serve --port=3000 --watch --incremental",