@umijs/bundler-webpack 4.0.6 → 4.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.
- package/{dist → client}/client/client.d.ts +0 -0
- package/client/client/client.js +295 -194
- package/client/constants.d.ts +15 -0
- package/client/constants.js +28 -19
- package/client/utils/formatWebpackMessages.d.ts +12 -0
- package/client/utils/formatWebpackMessages.js +68 -86
- package/dist/build.d.ts +1 -1
- package/dist/build.js +105 -61
- package/dist/cli.js +77 -69
- package/dist/config/_sampleFeature.js +33 -9
- package/dist/config/assetRules.js +45 -36
- package/dist/config/bundleAnalyzerPlugin.js +39 -17
- package/dist/config/compressPlugin.js +113 -95
- package/dist/config/config.d.ts +1 -0
- package/dist/config/config.js +204 -215
- package/dist/config/copyPlugin.js +59 -40
- package/dist/config/cssRules.js +136 -131
- package/dist/config/definePlugin.d.ts +1 -0
- package/dist/config/definePlugin.js +71 -31
- package/dist/config/detectDeadCode.js +120 -108
- package/dist/config/detectDeadCodePlugin.js +78 -63
- package/dist/config/fastRefreshPlugin.js +39 -20
- package/dist/config/forkTSCheckerPlugin.js +38 -19
- package/dist/config/harmonyLinkingErrorPlugin.js +48 -29
- package/dist/config/ignorePlugin.js +38 -14
- package/dist/config/javaScriptRules.js +147 -173
- package/dist/config/manifestPlugin.js +51 -15
- package/dist/config/miniCSSExtractPlugin.js +42 -22
- package/dist/config/nodePolyfill.js +65 -26
- package/dist/config/nodePrefixPlugin.js +36 -12
- package/dist/config/progressPlugin.js +37 -13
- package/dist/config/purgecssWebpackPlugin.js +41 -19
- package/dist/config/speedMeasureWebpackPlugin.js +41 -20
- package/dist/config/ssrPlugin.js +83 -63
- package/dist/config/svgRules.js +74 -46
- package/dist/constants.js +57 -22
- package/dist/dev.d.ts +1 -1
- package/dist/dev.js +170 -129
- package/dist/index.js +22 -20
- package/dist/loader/svgr.js +73 -54
- package/dist/loader/swc.js +110 -69
- package/dist/parcelCSS.js +31 -27
- package/dist/plugins/ProgressPlugin.js +66 -43
- package/dist/plugins/RuntimePublicPathPlugin.js +42 -23
- package/dist/plugins/_SamplePlugin.js +39 -14
- package/dist/requireHook.js +37 -27
- package/dist/schema.js +120 -95
- package/dist/server/server.d.ts +0 -1
- package/dist/server/server.js +214 -184
- package/dist/server/ws.d.ts +0 -2
- package/dist/server/ws.js +63 -38
- package/dist/swcPlugins/autoCSSModules.js +50 -31
- package/dist/swcPlugins/changeImportFromString.js +31 -9
- package/dist/swcPlugins/lockCoreJS.js +44 -20
- package/dist/types.d.ts +2 -1
- package/dist/types.js +61 -30
- package/dist/utils/browsersList.js +31 -8
- package/dist/utils/depMatch.js +63 -39
- package/dist/utils/formatWebpackMessages.js +93 -91
- package/dist/utils/getEsBuildTarget.js +32 -10
- package/package.json +12 -16
- package/compiled/fork-ts-checker-webpack-plugin/LICENSE +0 -21
- package/compiled/fork-ts-checker-webpack-plugin/fsevents.node +0 -0
- package/compiled/fork-ts-checker-webpack-plugin/index.js +0 -42
- package/compiled/fork-ts-checker-webpack-plugin/package.json +0 -1
- package/compiled/react-refresh/LICENSE +0 -21
- package/compiled/react-refresh/index.js +0 -21
- package/compiled/react-refresh/package.json +0 -1
- package/dist/client/client.js +0 -245
|
@@ -1,100 +1,102 @@
|
|
|
1
|
-
|
|
2
|
-
var
|
|
3
|
-
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
4
10
|
};
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod));
|
|
20
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
21
|
+
|
|
22
|
+
// formatWebpackMessages.ts
|
|
23
|
+
var formatWebpackMessages_exports = {};
|
|
24
|
+
__export(formatWebpackMessages_exports, {
|
|
25
|
+
formatMessage: () => formatMessage,
|
|
26
|
+
formatWebpackMessages: () => formatWebpackMessages
|
|
27
|
+
});
|
|
28
|
+
module.exports = __toCommonJS(formatWebpackMessages_exports);
|
|
29
|
+
var import_strip_ansi = __toESM(require("@umijs/utils/compiled/strip-ansi"));
|
|
30
|
+
var friendlySyntaxErrorLabel = "Syntax error:";
|
|
9
31
|
function isLikelyASyntaxError(message) {
|
|
10
|
-
|
|
32
|
+
return (0, import_strip_ansi.default)(message).indexOf(friendlySyntaxErrorLabel) !== -1;
|
|
11
33
|
}
|
|
12
34
|
function formatMessage(message) {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
message.
|
|
22
|
-
|
|
23
|
-
lines = message['message'].split('\n');
|
|
24
|
-
}
|
|
25
|
-
});
|
|
26
|
-
}
|
|
27
|
-
// Strip webpack-added headers off errors/warnings
|
|
28
|
-
// https://github.com/webpack/webpack/blob/master/lib/ModuleError.js
|
|
29
|
-
lines = lines.filter((line) => !/Module [A-z ]+\(from/.test(line));
|
|
30
|
-
// Transform parsing error into syntax error
|
|
31
|
-
// TODO: move this to our ESLint formatter?
|
|
32
|
-
lines = lines.map((line) => {
|
|
33
|
-
const parsingError = /Line (\d+):(?:(\d+):)?\s*Parsing error: (.+)$/.exec(line);
|
|
34
|
-
if (!parsingError) {
|
|
35
|
-
return line;
|
|
36
|
-
}
|
|
37
|
-
const [, errorLine, errorColumn, errorMessage] = parsingError;
|
|
38
|
-
return `${friendlySyntaxErrorLabel} ${errorMessage} (${errorLine}:${errorColumn})`;
|
|
35
|
+
let lines = [];
|
|
36
|
+
if (typeof message === "string") {
|
|
37
|
+
lines = message.split("\n");
|
|
38
|
+
} else if ("message" in message) {
|
|
39
|
+
lines = message["message"].split("\n");
|
|
40
|
+
} else if (Array.isArray(message)) {
|
|
41
|
+
message.forEach((message2) => {
|
|
42
|
+
if ("message" in message2) {
|
|
43
|
+
lines = message2["message"].split("\n");
|
|
44
|
+
}
|
|
39
45
|
});
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
message = message.replace(/^.*export '(.+?)' \(imported as '(.+?)'\) was not found in '(.+?)'.*$/gm, `Attempted import error: '$1' is not exported from '$3' (imported as '$2').`);
|
|
47
|
-
lines = message.split('\n');
|
|
48
|
-
// Remove leading newline
|
|
49
|
-
if (lines.length > 2 && lines[1].trim() === '') {
|
|
50
|
-
lines.splice(1, 1);
|
|
51
|
-
}
|
|
52
|
-
// Clean up file name
|
|
53
|
-
lines[0] = lines[0].replace(/^(.*) \d+:\d+-\d+$/, '$1');
|
|
54
|
-
// Cleans up verbose "module not found" messages for files and packages.
|
|
55
|
-
if (lines[1] && lines[1].indexOf('Module not found: ') === 0) {
|
|
56
|
-
lines = [
|
|
57
|
-
lines[0],
|
|
58
|
-
lines[1]
|
|
59
|
-
.replace('Error: ', '')
|
|
60
|
-
.replace('Module not found: Cannot find file:', 'Cannot find file:'),
|
|
61
|
-
];
|
|
46
|
+
}
|
|
47
|
+
lines = lines.filter((line) => !/Module [A-z ]+\(from/.test(line));
|
|
48
|
+
lines = lines.map((line) => {
|
|
49
|
+
const parsingError = /Line (\d+):(?:(\d+):)?\s*Parsing error: (.+)$/.exec(line);
|
|
50
|
+
if (!parsingError) {
|
|
51
|
+
return line;
|
|
62
52
|
}
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
lines =
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
53
|
+
const [, errorLine, errorColumn, errorMessage] = parsingError;
|
|
54
|
+
return `${friendlySyntaxErrorLabel} ${errorMessage} (${errorLine}:${errorColumn})`;
|
|
55
|
+
});
|
|
56
|
+
message = lines.join("\n");
|
|
57
|
+
message = message.replace(/SyntaxError\s+\((\d+):(\d+)\)\s*(.+?)\n/g, `${friendlySyntaxErrorLabel} $3 ($1:$2)
|
|
58
|
+
`);
|
|
59
|
+
message = message.replace(/^.*export '(.+?)' was not found in '(.+?)'.*$/gm, `Attempted import error: '$1' is not exported from '$2'.`);
|
|
60
|
+
message = message.replace(/^.*export 'default' \(imported as '(.+?)'\) was not found in '(.+?)'.*$/gm, `Attempted import error: '$2' does not contain a default export (imported as '$1').`);
|
|
61
|
+
message = message.replace(/^.*export '(.+?)' \(imported as '(.+?)'\) was not found in '(.+?)'.*$/gm, `Attempted import error: '$1' is not exported from '$3' (imported as '$2').`);
|
|
62
|
+
lines = message.split("\n");
|
|
63
|
+
if (lines.length > 2 && lines[1].trim() === "") {
|
|
64
|
+
lines.splice(1, 1);
|
|
65
|
+
}
|
|
66
|
+
lines[0] = lines[0].replace(/^(.*) \d+:\d+-\d+$/, "$1");
|
|
67
|
+
if (lines[1] && lines[1].indexOf("Module not found: ") === 0) {
|
|
68
|
+
lines = [
|
|
69
|
+
lines[0],
|
|
70
|
+
lines[1].replace("Error: ", "").replace("Module not found: Cannot find file:", "Cannot find file:")
|
|
71
|
+
];
|
|
72
|
+
}
|
|
73
|
+
if (lines[1] && lines[1].match(/Cannot find module.+sass/)) {
|
|
74
|
+
lines[1] = "To import Sass files, you first need to install sass.\n";
|
|
75
|
+
lines[1] += "Run `npm install sass` or `yarn add sass` inside your workspace.";
|
|
76
|
+
}
|
|
77
|
+
message = lines.join("\n");
|
|
78
|
+
message = message.replace(/^\s*at\s((?!webpack:).)*:\d+:\d+[\s)]*(\n|$)/gm, "");
|
|
79
|
+
message = message.replace(/^\s*at\s<anonymous>(\n|$)/gm, "");
|
|
80
|
+
lines = message.split("\n");
|
|
81
|
+
lines = lines.filter((line, index, arr) => index === 0 || line.trim() !== "" || line.trim() !== arr[index - 1].trim());
|
|
82
|
+
message = lines.join("\n");
|
|
83
|
+
return message.trim();
|
|
84
84
|
}
|
|
85
|
-
exports.formatMessage = formatMessage;
|
|
86
85
|
function formatWebpackMessages(json) {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
return result;
|
|
86
|
+
const formattedErrors = json.errors.map(function(message) {
|
|
87
|
+
return formatMessage(message);
|
|
88
|
+
});
|
|
89
|
+
const formattedWarnings = json.warnings.map(function(message) {
|
|
90
|
+
return formatMessage(message);
|
|
91
|
+
});
|
|
92
|
+
const result = { errors: formattedErrors, warnings: formattedWarnings };
|
|
93
|
+
if (result.errors.some(isLikelyASyntaxError)) {
|
|
94
|
+
result.errors = result.errors.filter(isLikelyASyntaxError);
|
|
95
|
+
}
|
|
96
|
+
return result;
|
|
99
97
|
}
|
|
100
|
-
|
|
98
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
99
|
+
0 && (module.exports = {
|
|
100
|
+
formatMessage,
|
|
101
|
+
formatWebpackMessages
|
|
102
|
+
});
|
|
@@ -1,12 +1,34 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// getEsBuildTarget.ts
|
|
20
|
+
var getEsBuildTarget_exports = {};
|
|
21
|
+
__export(getEsBuildTarget_exports, {
|
|
22
|
+
getEsBuildTarget: () => getEsBuildTarget
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(getEsBuildTarget_exports);
|
|
25
|
+
var import_constants = require("../constants");
|
|
5
26
|
function getEsBuildTarget({ targets }) {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
return `${key}${targets[key] === true ? '0' : targets[key]}`;
|
|
10
|
-
});
|
|
27
|
+
return Object.keys(targets).filter((key) => import_constants.DEFAULT_ESBUILD_TARGET_KEYS.includes(key)).map((key) => {
|
|
28
|
+
return `${key}${targets[key] === true ? "0" : targets[key]}`;
|
|
29
|
+
});
|
|
11
30
|
}
|
|
12
|
-
|
|
31
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
32
|
+
0 && (module.exports = {
|
|
33
|
+
getEsBuildTarget
|
|
34
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umijs/bundler-webpack",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.9",
|
|
4
4
|
"description": "@umijs/bundler-webpack",
|
|
5
5
|
"homepage": "https://github.com/umijs/umi/tree/master/packages/bundler-webpack#readme",
|
|
6
6
|
"bugs": "https://github.com/umijs/umi/issues",
|
|
@@ -21,10 +21,9 @@
|
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
23
|
"scripts": {
|
|
24
|
-
"build": "
|
|
25
|
-
"build:client": "pnpm tsc --project ./tsconfig.client.json",
|
|
24
|
+
"build": "umi-scripts father build",
|
|
26
25
|
"build:deps": "umi-scripts bundleDeps",
|
|
27
|
-
"dev": "
|
|
26
|
+
"dev": "umi-scripts father dev",
|
|
28
27
|
"generate:webpackPackages": "zx ./scripts/generateWebpackPackages.mjs",
|
|
29
28
|
"test": "umi-scripts jest-turbo"
|
|
30
29
|
},
|
|
@@ -35,18 +34,21 @@
|
|
|
35
34
|
"@svgr/plugin-jsx": "^6.2.1",
|
|
36
35
|
"@svgr/plugin-svgo": "^6.2.0",
|
|
37
36
|
"@types/hapi__joi": "17.1.8",
|
|
38
|
-
"@umijs/babel-preset-umi": "4.0.
|
|
39
|
-
"@umijs/bundler-utils": "4.0.
|
|
40
|
-
"@umijs/
|
|
41
|
-
"@umijs/
|
|
37
|
+
"@umijs/babel-preset-umi": "4.0.9",
|
|
38
|
+
"@umijs/bundler-utils": "4.0.9",
|
|
39
|
+
"@umijs/case-sensitive-paths-webpack-plugin": "^1.0.1",
|
|
40
|
+
"@umijs/mfsu": "4.0.9",
|
|
41
|
+
"@umijs/utils": "4.0.9",
|
|
42
42
|
"cors": "^2.8.5",
|
|
43
43
|
"css-loader": "6.7.1",
|
|
44
44
|
"es5-imcompatible-versions": "^0.1.73",
|
|
45
|
+
"fork-ts-checker-webpack-plugin": "7.2.4",
|
|
45
46
|
"jest-worker": "27.5.1",
|
|
46
47
|
"node-libs-browser": "2.2.1",
|
|
47
48
|
"postcss": "^8.4.13",
|
|
48
49
|
"postcss-preset-env": "7.5.0",
|
|
49
|
-
"react-error-overlay": "6.0.9"
|
|
50
|
+
"react-error-overlay": "6.0.9",
|
|
51
|
+
"react-refresh": "0.14.0"
|
|
50
52
|
},
|
|
51
53
|
"devDependencies": {
|
|
52
54
|
"@swc/core": "1.2.165",
|
|
@@ -60,14 +62,12 @@
|
|
|
60
62
|
"copy-webpack-plugin": "10.2.4",
|
|
61
63
|
"css-minimizer-webpack-plugin": "4.0.0",
|
|
62
64
|
"cssnano": "5.1.7",
|
|
63
|
-
"fork-ts-checker-webpack-plugin": "7.2.4",
|
|
64
65
|
"http-proxy-middleware": "2.0.4",
|
|
65
66
|
"less-loader": "10.2.0",
|
|
66
67
|
"mini-css-extract-plugin": "2.6.0",
|
|
67
68
|
"postcss-flexbugs-fixes": "5.0.2",
|
|
68
69
|
"postcss-loader": "6.2.1",
|
|
69
70
|
"purgecss-webpack-plugin": "4.1.3",
|
|
70
|
-
"react-refresh": "0.12.0",
|
|
71
71
|
"sass-loader": "12.6.0",
|
|
72
72
|
"schema-utils": "4.0.0",
|
|
73
73
|
"speed-measure-webpack-plugin": "1.5.0",
|
|
@@ -100,7 +100,6 @@
|
|
|
100
100
|
"cssnano",
|
|
101
101
|
"compression",
|
|
102
102
|
"connect-history-api-fallback",
|
|
103
|
-
"fork-ts-checker-webpack-plugin",
|
|
104
103
|
"http-proxy-middleware",
|
|
105
104
|
"less-loader",
|
|
106
105
|
"mini-css-extract-plugin",
|
|
@@ -121,8 +120,7 @@
|
|
|
121
120
|
"webpack-manifest-plugin",
|
|
122
121
|
"webpack-sources",
|
|
123
122
|
"ws",
|
|
124
|
-
"./bundles/webpack/bundle"
|
|
125
|
-
"./bundles/react-refresh/babel"
|
|
123
|
+
"./bundles/webpack/bundle"
|
|
126
124
|
],
|
|
127
125
|
"externals": {
|
|
128
126
|
"@swc/core": "@swc/core",
|
|
@@ -169,13 +167,11 @@
|
|
|
169
167
|
"cssnano",
|
|
170
168
|
"compression",
|
|
171
169
|
"connect-history-api-fallback",
|
|
172
|
-
"fork-ts-checker-webpack-plugin",
|
|
173
170
|
"less-loader",
|
|
174
171
|
"mini-css-extract-plugin",
|
|
175
172
|
"postcss-flexbugs-fixes",
|
|
176
173
|
"postcss-loader",
|
|
177
174
|
"purgecss-webpack-plugin",
|
|
178
|
-
"react-refresh",
|
|
179
175
|
"sass-loader",
|
|
180
176
|
"speed-measure-webpack-plugin",
|
|
181
177
|
"style-loader",
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2020 TypeStrong
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
Binary file
|