Преглед изворни кода

修改打包后的目录名称

seimin пре 1 година
родитељ
комит
5af20ae93d
4 измењених фајлова са 5 додато и 5 уклоњено
  1. 1 1
      angular.json
  2. 2 2
      package.json
  3. 1 1
      upload/development.js
  4. 1 1
      upload/production.js

+ 1 - 1
angular.json

@@ -17,7 +17,7 @@
17 17
         "build": {
18 18
           "builder": "@angular-devkit/build-angular:browser",
19 19
           "options": {
20
-            "outputPath": "dist/itsm-pc",
20
+            "outputPath": "dist/pc",
21 21
             "index": "src/index.html",
22 22
             "main": "src/main.ts",
23 23
             "polyfills": "src/polyfills.ts",

+ 2 - 2
package.json

@@ -11,8 +11,8 @@
11 11
     "test": "ng test",
12 12
     "lint": "ng lint",
13 13
     "e2e": "ng e2e",
14
-    "bundle-report": "ng build --prod --stats-json && webpack-bundle-analyzer dist/itsm-pc/stats.json",
15
-    "bundle-report:17": "set NODE_OPTIONS=--openssl-legacy-provider && ng build --prod --stats-json && webpack-bundle-analyzer dist/itsm-pc/stats.json"
14
+    "bundle-report": "ng build --prod --stats-json && webpack-bundle-analyzer dist/pc/stats.json",
15
+    "bundle-report:17": "set NODE_OPTIONS=--openssl-legacy-provider && ng build --prod --stats-json && webpack-bundle-analyzer dist/pc/stats.json"
16 16
   },
17 17
   "private": true,
18 18
   "dependencies": {

+ 1 - 1
upload/development.js

@@ -6,7 +6,7 @@ const config = {
6 6
   port: 22,      //端口
7 7
   password: "123456", // ssh 密码
8 8
   path: '/home/itsm/project/html', // 上传地址,删除地址
9
-  buildPath: '../dist/itsm-pc' // 本地打包后文件地址
9
+  buildPath: '../dist/pc' // 本地打包后文件地址
10 10
 }
11 11
 let Client = require('ssh2-sftp-client');
12 12
 

+ 1 - 1
upload/production.js

@@ -6,7 +6,7 @@ const config = {
6 6
   port: 22,      //端口
7 7
   password: "dstech@123", // ssh 密码
8 8
   path: '/home/itsm_v2_/web/pc', // 上传地址,删除地址
9
-  buildPath: '../dist/itsm-pc' // 本地打包后文件地址
9
+  buildPath: '../dist/pc' // 本地打包后文件地址
10 10
 }
11 11
 let Client = require('ssh2-sftp-client');
12 12