From 70f71d11959d4523ba1932deecbf722c000341b9 Mon Sep 17 00:00:00 2001 From: Casion Date: Sat, 20 Aug 2022 18:32:50 +0800 Subject: [PATCH] fix web build of LICENSE text (#2911) --- linkis-web/package.json | 2 +- linkis-web/vue.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/linkis-web/package.json b/linkis-web/package.json index e6dc61fefc..148dffeb93 100644 --- a/linkis-web/package.json +++ b/linkis-web/package.json @@ -1,6 +1,6 @@ { "name": "linkis", - "version": "1.1.0", + "version": "1.2.0", "private": true, "scripts": { "serve": "vue-cli-service serve", diff --git a/linkis-web/vue.config.js b/linkis-web/vue.config.js index c187e294c7..e4ffca843f 100644 --- a/linkis-web/vue.config.js +++ b/linkis-web/vue.config.js @@ -157,7 +157,7 @@ module.exports = { copy: [ { source: './config.sh', destination: `./dist/config.sh`,toType: 'file'}, { source: './install.sh', destination: `./dist/install.sh`,toType: 'file' }, - { source: './release-docs/LICENSE', destination: `./dist/NOTICE`,toType: 'file'}, + { source: './release-docs/LICENSE', destination: `./dist/LICENSE`,toType: 'file'}, { source: './release-docs/NOTICE', destination: `./dist/NOTICE`,toType: 'file'}, { source: './release-docs/licenses', destination: `./dist/licenses`}, { source: '../DISCLAIMER', destination: `./dist/DISCLAIMER`,toType: 'file'}