filecat 1.0.8 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -353,21 +353,6 @@ See the Apache Version 2.0 License for specific language governing permissions
353
353
  and limitations under the License.
354
354
  ***************************************************************************** */
355
355
 
356
- /*! *****************************************************************************
357
- Copyright (c) Microsoft Corporation.
358
-
359
- Permission to use, copy, modify, and/or distribute this software for any
360
- purpose with or without fee is hereby granted.
361
-
362
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
363
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
364
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
365
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
366
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
367
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
368
- PERFORMANCE OF THIS SOFTWARE.
369
- ***************************************************************************** */
370
-
371
356
  /*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
372
357
 
373
358
  /*! http://mths.be/fromcodepoint v0.1.0 by @mathias */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "filecat",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "filecat 文件管理器",
5
5
  "author": "xiaobaidadada",
6
6
  "scripts": {
@@ -118,7 +118,6 @@
118
118
  "style-loader": "^3.3.4",
119
119
  "systeminformation": "^5.22.11",
120
120
  "tar": "^7.4.3",
121
- "tencentcloud-sdk-nodejs": "^4.0.858",
122
121
  "tldts": "^6.1.20",
123
122
  "ts-node": "^10.9.2",
124
123
  "typedi": "^0.10.0",
@@ -16,6 +16,9 @@ const plugins = [
16
16
  }),
17
17
  new webpack.DefinePlugin({
18
18
  'process.env.run_env': JSON.stringify("docker") // 必须用 JSON.stringify
19
+ }),
20
+ new webpack.IgnorePlugin({
21
+ resourceRegExp: /Debug/,
19
22
  })
20
23
  ];
21
24
  module.exports = {
@@ -16,6 +16,9 @@ const plugins = [
16
16
  }),
17
17
  new webpack.DefinePlugin({
18
18
  'process.env.run_env': JSON.stringify("pkg")
19
+ }),
20
+ new webpack.IgnorePlugin({
21
+ resourceRegExp: /Debug/,
19
22
  })
20
23
  ];
21
24
  module.exports = {