From 9f351d14c004dce9f51281144c9aa4c71e6d42cd Mon Sep 17 00:00:00 2001 From: mertsincan Date: Thu, 26 Oct 2023 11:48:07 +0100 Subject: [PATCH] Fixed #4697 --- build-meta.js | 1 - package.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/build-meta.js b/build-meta.js index fb7b86a1d..bad43d1ab 100644 --- a/build-meta.js +++ b/build-meta.js @@ -28,6 +28,5 @@ copyDependencies('./components/lib/icons/', 'dist/icons/'); copyDependencies('./components/lib/passthrough/', 'dist/passthrough/'); fs.copySync(path.resolve(__dirname, './components/lib/ts-helpers.d.ts'), 'dist/ts-helpers.d.ts'); -fs.copySync(path.resolve(__dirname, './package-build.json'), 'dist/package.json'); fs.copySync(path.resolve(__dirname, './README.md'), 'dist/README.md'); fs.copySync(path.resolve(__dirname, './LICENSE.md'), 'dist/LICENSE.md'); diff --git a/package.json b/package.json index d941a80b1..be06d7ae5 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "preview": "nuxt preview", "postinstall": "nuxt prepare", "build:lib": "npm run build:check && npm run build:package", - "build:package": "NODE_ENV=production rollup -c && node api-generator/build-api && gulp build-styles", + "build:package": "NODE_ENV=production rollup -c && node build-meta && node api-generator/build-api && gulp build-styles", "build:check": "npm run format:check && npm run security:check", "security:check": "npm audit --production --audit-level high", "format": "prettier --write \"**/*.{js,vue,d.ts}\" --cache",