From d813641728288c563c4d3c728c409a727413b59e Mon Sep 17 00:00:00 2001 From: lucasferreiralimax Date: Sun, 25 Aug 2024 07:04:52 -0300 Subject: [PATCH] update script post-build --- package.json | 2 +- scripts/{generate-dist.js => post-build.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename scripts/{generate-dist.js => post-build.js} (100%) diff --git a/package.json b/package.json index a9569d4..0cc4d67 100755 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false", "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore", "minify": "esbuild dist/**/*.js --minify --outdir=dist --allow-overwrite ", - "postbuild": "node scripts/generate-dist.js", + "postbuild": "node scripts/post-build.js", "publish": "cd dist && npm pub && cd .." }, "dependencies": { diff --git a/scripts/generate-dist.js b/scripts/post-build.js similarity index 100% rename from scripts/generate-dist.js rename to scripts/post-build.js