From bc3028af55d9603c94a452e51809f704273226ae Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Mon, 11 Aug 2025 19:08:51 +0000 Subject: [PATCH] refactor: move scripts to ts_install directory --- package.json | 6 +++--- {scripts => ts_install}/download-schematron.ts | 0 {scripts => ts_install}/download-test-samples.ts | 0 {scripts => ts_install}/download-xrechnung-rules.ts | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename {scripts => ts_install}/download-schematron.ts (100%) rename {scripts => ts_install}/download-test-samples.ts (100%) rename {scripts => ts_install}/download-xrechnung-rules.ts (100%) diff --git a/package.json b/package.json index e9039d7..314f643 100644 --- a/package.json +++ b/package.json @@ -10,10 +10,10 @@ "license": "MIT", "scripts": { "test": "(tstest test/ --verbose --logfile --timeout 60)", - "build": "(tsbuild --web --allowimplicitany)", + "build": "(tsbuild tsfolders --allowimplicitany)", "buildDocs": "(tsdoc)", - "download-schematron": "tsx scripts/download-schematron.ts", - "download-test-samples": "tsx scripts/download-test-samples.ts", + "download-schematron": "tsx ts_install/download-schematron.ts", + "download-test-samples": "tsx ts_install/download-test-samples.ts", "test:conformance": "tstest test/test.conformance-harness.ts" }, "devDependencies": { diff --git a/scripts/download-schematron.ts b/ts_install/download-schematron.ts similarity index 100% rename from scripts/download-schematron.ts rename to ts_install/download-schematron.ts diff --git a/scripts/download-test-samples.ts b/ts_install/download-test-samples.ts similarity index 100% rename from scripts/download-test-samples.ts rename to ts_install/download-test-samples.ts diff --git a/scripts/download-xrechnung-rules.ts b/ts_install/download-xrechnung-rules.ts similarity index 100% rename from scripts/download-xrechnung-rules.ts rename to ts_install/download-xrechnung-rules.ts