@atlaspack/core 2.18.7-typescript-8a6ec6c8b.0 → 2.18.7
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/CHANGELOG.md +20 -0
- package/index.d.ts +4 -0
- package/lib/Atlaspack.js +10 -0
- package/lib/AtlaspackConfig.schema.js +1 -7
- package/lib/BundleGraph.js +0 -2
- package/lib/PackagerRunner.js +1 -2
- package/lib/RequestTracker.js +36 -41
- package/lib/Transformation.js +2 -2
- package/lib/atlaspack-v3/AtlaspackV3.js +16 -3
- package/lib/atlaspack-v3/worker/compat/environment.js +2 -2
- package/lib/atlaspack-v3/worker/compat/mutable-asset.js +6 -6
- package/lib/atlaspack-v3/worker/compat/plugin-config.js +5 -5
- package/lib/atlaspack-v3/worker/index.js +0 -3
- package/lib/dumpGraphToGraphViz.js +1 -1
- package/lib/requests/DevDepRequest.js +2 -3
- package/lib/resolveOptions.js +2 -3
- package/lib/worker.js +1 -18
- package/package.json +20 -21
- package/src/Atlaspack.js +11 -0
- package/src/atlaspack-v3/AtlaspackV3.js +24 -3
- package/src/atlaspack-v3/worker/index.js +1 -2
- package/LICENSE +0 -201
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @atlaspack/core
|
|
2
2
|
|
|
3
|
+
## 2.18.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#666](https://github.com/atlassian-labs/atlaspack/pull/666) [`1ff31f1`](https://github.com/atlassian-labs/atlaspack/commit/1ff31f10391c48780c9fcfc243b4e828a1b285e0) Thanks [@marcins](https://github.com/marcins)! - Ensure tracer is disabled if it was enabled on teardown
|
|
8
|
+
|
|
9
|
+
- [#661](https://github.com/atlassian-labs/atlaspack/pull/661) [`e8a60ff`](https://github.com/atlassian-labs/atlaspack/commit/e8a60ffbea41caef265786bbf73349771760081c) Thanks [@marcins](https://github.com/marcins)! - Add new feature flag atlaspackV3CleanShutdown which will dispose of the NAPI worker pool when disposing of the Atlaspack class
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`e8a60ff`](https://github.com/atlassian-labs/atlaspack/commit/e8a60ffbea41caef265786bbf73349771760081c), [`30ee2cf`](https://github.com/atlassian-labs/atlaspack/commit/30ee2cfcd34cf2646ded0eda13fdb80a2a5de529)]:
|
|
12
|
+
- @atlaspack/feature-flags@2.18.4
|
|
13
|
+
- @atlaspack/utils@2.16.0
|
|
14
|
+
- @atlaspack/cache@3.2.11
|
|
15
|
+
- @atlaspack/fs@2.15.11
|
|
16
|
+
- @atlaspack/graph@3.5.6
|
|
17
|
+
- @atlaspack/package-manager@2.14.16
|
|
18
|
+
- @atlaspack/workers@2.14.16
|
|
19
|
+
- @atlaspack/profiler@2.14.14
|
|
20
|
+
- @atlaspack/types@2.15.6
|
|
21
|
+
- @atlaspack/plugin@2.14.16
|
|
22
|
+
|
|
3
23
|
## 2.18.6
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/index.d.ts
CHANGED
|
@@ -4,9 +4,13 @@ import type {
|
|
|
4
4
|
BuildSuccessEvent,
|
|
5
5
|
AsyncSubscription,
|
|
6
6
|
} from '@atlaspack/types';
|
|
7
|
+
|
|
7
8
|
import type {FarmOptions} from '@atlaspack/workers';
|
|
9
|
+
|
|
8
10
|
import type WorkerFarm from '@atlaspack/workers';
|
|
9
11
|
|
|
12
|
+
export declare const ATLASPACK_VERSION: string;
|
|
13
|
+
|
|
10
14
|
export class Atlaspack {
|
|
11
15
|
constructor(options: InitialAtlaspackOptions);
|
|
12
16
|
run(): Promise<BuildSuccessEvent>;
|
package/lib/Atlaspack.js
CHANGED
|
@@ -226,6 +226,11 @@ class Atlaspack {
|
|
|
226
226
|
});
|
|
227
227
|
}
|
|
228
228
|
this.rustAtlaspack = rustAtlaspack;
|
|
229
|
+
if (featureFlags.atlaspackV3CleanShutdown) {
|
|
230
|
+
this.#disposable.add(() => {
|
|
231
|
+
rustAtlaspack.end();
|
|
232
|
+
});
|
|
233
|
+
}
|
|
229
234
|
let {
|
|
230
235
|
config
|
|
231
236
|
} = await (0, _AtlaspackConfigRequest.loadAtlaspackConfig)(resolvedOptions);
|
|
@@ -395,6 +400,11 @@ class Atlaspack {
|
|
|
395
400
|
}
|
|
396
401
|
if (options.shouldTrace) {
|
|
397
402
|
_profiler().tracer.enable();
|
|
403
|
+
// We need to ensure the tracer is disabled when Atlaspack is disposed as it is a module level object.
|
|
404
|
+
// While rare (except for tests), if another instance is created later it should not have tracing enabled.
|
|
405
|
+
this.#disposable.add(() => {
|
|
406
|
+
_profiler().tracer.disable();
|
|
407
|
+
});
|
|
398
408
|
}
|
|
399
409
|
await this.#reporterRunner.report({
|
|
400
410
|
type: 'buildStart'
|
|
@@ -14,13 +14,7 @@ exports.validatePackageName = validatePackageName;
|
|
|
14
14
|
// * We do not care about package names
|
|
15
15
|
// * Validation makes interop between parcel/atlaspack confusing.
|
|
16
16
|
//
|
|
17
|
-
function validatePackageName(
|
|
18
|
-
// eslint-disable-next-line no-unused-vars
|
|
19
|
-
pkg,
|
|
20
|
-
// eslint-disable-next-line no-unused-vars
|
|
21
|
-
pluginType,
|
|
22
|
-
// eslint-disable-next-line no-unused-vars
|
|
23
|
-
key) {}
|
|
17
|
+
function validatePackageName() {}
|
|
24
18
|
const validatePluginName = (pluginType, key) => {
|
|
25
19
|
return val => {
|
|
26
20
|
// allow plugin spread...
|
package/lib/BundleGraph.js
CHANGED
|
@@ -867,7 +867,6 @@ class BundleGraph {
|
|
|
867
867
|
if (bundleHasReference(descendant)) {
|
|
868
868
|
isReferenced = true;
|
|
869
869
|
actions.stop();
|
|
870
|
-
return;
|
|
871
870
|
}
|
|
872
871
|
}, referencer);
|
|
873
872
|
return isReferenced;
|
|
@@ -926,7 +925,6 @@ class BundleGraph {
|
|
|
926
925
|
let childBundles = this.getBundlesInBundleGroup(node.value);
|
|
927
926
|
if (childBundles.some(b => b.id !== bundle.id && b.bundleBehavior !== _types.BundleBehavior.isolated && b.bundleBehavior !== _types.BundleBehavior.inline && this.bundleHasAsset(b, asset))) {
|
|
928
927
|
actions.skipChildren();
|
|
929
|
-
return;
|
|
930
928
|
}
|
|
931
929
|
}
|
|
932
930
|
}, [bundleGraphEdgeTypes.references, bundleGraphEdgeTypes.bundle]);
|
package/lib/PackagerRunner.js
CHANGED
|
@@ -413,10 +413,9 @@ class PackagerRunner {
|
|
|
413
413
|
inlineSources = this.options.mode === 'production';
|
|
414
414
|
}
|
|
415
415
|
}
|
|
416
|
-
let mapFilename = fullPath + '.map';
|
|
417
416
|
let isInlineMap = bundleEnv.sourceMap && bundleEnv.sourceMap.inline;
|
|
418
417
|
let stringified = await map.stringify({
|
|
419
|
-
file: _path().default.basename(
|
|
418
|
+
file: _path().default.basename(fullPath + '.map'),
|
|
420
419
|
// $FlowFixMe
|
|
421
420
|
fs: this.options.inputFS,
|
|
422
421
|
rootDir: this.options.projectRoot,
|
package/lib/RequestTracker.js
CHANGED
|
@@ -722,8 +722,7 @@ class RequestGraph extends _graph().ContentGraph {
|
|
|
722
722
|
}
|
|
723
723
|
}
|
|
724
724
|
const invalidationsAfter = this.getInvalidNodeCount();
|
|
725
|
-
|
|
726
|
-
invalidationsByPath.set(_path, (invalidationsByPath.get(_path) ?? 0) + invalidationsForEvent);
|
|
725
|
+
invalidationsByPath.set(_path, (invalidationsByPath.get(_path) ?? 0) + (invalidationsAfter - invalidationsBefore));
|
|
727
726
|
}
|
|
728
727
|
if ((0, _featureFlags().getFeatureFlag)('fixQuadraticCacheInvalidation')) {
|
|
729
728
|
cleanUpOrphans(this);
|
|
@@ -963,41 +962,40 @@ class RequestTracker {
|
|
|
963
962
|
}
|
|
964
963
|
createAPI(requestId, previousInvalidations) {
|
|
965
964
|
let subRequestContentKeys = new Set();
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
965
|
+
return {
|
|
966
|
+
api: {
|
|
967
|
+
invalidateOnFileCreate: input => this.graph.invalidateOnFileCreate(requestId, input),
|
|
968
|
+
invalidateOnConfigKeyChange: (filePath, configKey, contentHash) => this.graph.invalidateOnConfigKeyChange(requestId, filePath, configKey, contentHash),
|
|
969
|
+
invalidateOnFileDelete: filePath => this.graph.invalidateOnFileDelete(requestId, filePath),
|
|
970
|
+
invalidateOnFileUpdate: filePath => this.graph.invalidateOnFileUpdate(requestId, filePath),
|
|
971
|
+
invalidateOnStartup: () => this.graph.invalidateOnStartup(requestId),
|
|
972
|
+
invalidateOnBuild: () => this.graph.invalidateOnBuild(requestId),
|
|
973
|
+
invalidateOnEnvChange: env => this.graph.invalidateOnEnvChange(requestId, env, this.options.env[env]),
|
|
974
|
+
invalidateOnOptionChange: option => this.graph.invalidateOnOptionChange(requestId, option, this.options[option]),
|
|
975
|
+
getInvalidations: () => previousInvalidations,
|
|
976
|
+
storeResult: (result, cacheKey) => {
|
|
977
|
+
this.storeResult(requestId, result, cacheKey);
|
|
978
|
+
},
|
|
979
|
+
getSubRequests: () => this.graph.getSubRequests(requestId),
|
|
980
|
+
getInvalidSubRequests: () => this.graph.getInvalidSubRequests(requestId),
|
|
981
|
+
getPreviousResult: ifMatch => {
|
|
982
|
+
var _this$graph$getNode;
|
|
983
|
+
let contentKey = (0, _nullthrows().default)((_this$graph$getNode = this.graph.getNode(requestId)) === null || _this$graph$getNode === void 0 ? void 0 : _this$graph$getNode.id);
|
|
984
|
+
return this.getRequestResult(contentKey, ifMatch);
|
|
985
|
+
},
|
|
986
|
+
getRequestResult: id => this.getRequestResult(id),
|
|
987
|
+
canSkipSubrequest: contentKey => {
|
|
988
|
+
if (this.graph.hasContentKey(contentKey) && this.hasValidResult(this.graph.getNodeIdByContentKey(contentKey))) {
|
|
989
|
+
subRequestContentKeys.add(contentKey);
|
|
990
|
+
return true;
|
|
991
|
+
}
|
|
992
|
+
return false;
|
|
993
|
+
},
|
|
994
|
+
runRequest: (subRequest, opts) => {
|
|
995
|
+
subRequestContentKeys.add(subRequest.id);
|
|
996
|
+
return this.runRequest(subRequest, opts);
|
|
991
997
|
}
|
|
992
|
-
return false;
|
|
993
998
|
},
|
|
994
|
-
runRequest: (subRequest, opts) => {
|
|
995
|
-
subRequestContentKeys.add(subRequest.id);
|
|
996
|
-
return this.runRequest(subRequest, opts);
|
|
997
|
-
}
|
|
998
|
-
};
|
|
999
|
-
return {
|
|
1000
|
-
api,
|
|
1001
999
|
subRequestContentKeys
|
|
1002
1000
|
};
|
|
1003
1001
|
}
|
|
@@ -1149,8 +1147,7 @@ function getWatcherOptions({
|
|
|
1149
1147
|
watchDir,
|
|
1150
1148
|
watchBackend
|
|
1151
1149
|
}) {
|
|
1152
|
-
const
|
|
1153
|
-
const uniqueDirs = [...new Set([...watchIgnore, ...vcsDirs, cacheDir])];
|
|
1150
|
+
const uniqueDirs = [...new Set([...watchIgnore, ...['.git', '.hg'], cacheDir])];
|
|
1154
1151
|
const ignore = uniqueDirs.map(dir => _path2().default.resolve(watchDir, dir));
|
|
1155
1152
|
return {
|
|
1156
1153
|
ignore,
|
|
@@ -1344,15 +1341,13 @@ async function invalidateRequestGraph(requestGraph, options, events) {
|
|
|
1344
1341
|
const invalidatedCount = invalidations.reduce((acc, invalidation) => acc + invalidation.count, 0);
|
|
1345
1342
|
const requestCount = requestGraph.nodes.reduce((acc, node) => acc + ((node === null || node === void 0 ? void 0 : node.type) === REQUEST ? 1 : 0), 0);
|
|
1346
1343
|
const nodeCount = requestGraph.nodes.length;
|
|
1347
|
-
const nodeInvalidationRatio = invalidatedCount / nodeCount;
|
|
1348
|
-
const requestInvalidationRatio = invalidatedCount / requestCount;
|
|
1349
1344
|
return {
|
|
1350
1345
|
invalidations,
|
|
1351
1346
|
nodeCount,
|
|
1352
1347
|
requestCount,
|
|
1353
1348
|
invalidatedCount,
|
|
1354
|
-
nodeInvalidationRatio,
|
|
1355
|
-
requestInvalidationRatio
|
|
1349
|
+
nodeInvalidationRatio: invalidatedCount / nodeCount,
|
|
1350
|
+
requestInvalidationRatio: invalidatedCount / requestCount
|
|
1356
1351
|
};
|
|
1357
1352
|
}
|
|
1358
1353
|
/**
|
package/lib/Transformation.js
CHANGED
|
@@ -173,12 +173,12 @@ class Transformation {
|
|
|
173
173
|
});
|
|
174
174
|
|
|
175
175
|
// Prefer `isSource` originating from the AssetRequest.
|
|
176
|
-
|
|
176
|
+
|
|
177
177
|
return new _UncommittedAsset.default({
|
|
178
178
|
value: (0, _assetUtils.createAsset)(this.options.projectRoot, {
|
|
179
179
|
code,
|
|
180
180
|
filePath,
|
|
181
|
-
isSource,
|
|
181
|
+
isSource: isSourceOverride ?? summarizedIsSource,
|
|
182
182
|
type: _path().default.extname((0, _projectPath.fromProjectPathRelative)(filePath)).slice(1),
|
|
183
183
|
pipeline,
|
|
184
184
|
env,
|
|
@@ -21,21 +21,28 @@ function _diagnostic() {
|
|
|
21
21
|
}
|
|
22
22
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
23
23
|
class AtlaspackV3 {
|
|
24
|
-
constructor(atlaspack_napi) {
|
|
24
|
+
constructor(atlaspack_napi, napiWorkerPool, isDefaultNapiWorkerPool) {
|
|
25
25
|
this._atlaspack_napi = atlaspack_napi;
|
|
26
|
+
this._napiWorkerPool = napiWorkerPool;
|
|
27
|
+
this._isDefaultNapiWorkerPool = isDefaultNapiWorkerPool;
|
|
26
28
|
}
|
|
27
29
|
static async create({
|
|
28
30
|
fs,
|
|
29
31
|
packageManager,
|
|
30
32
|
threads,
|
|
31
33
|
lmdb,
|
|
32
|
-
napiWorkerPool
|
|
34
|
+
napiWorkerPool,
|
|
33
35
|
...options
|
|
34
36
|
}) {
|
|
35
37
|
options.logLevel = options.logLevel || 'error';
|
|
36
38
|
options.defaultTargetOptions = options.defaultTargetOptions || {};
|
|
37
39
|
// $FlowFixMe "engines" are readonly
|
|
38
40
|
options.defaultTargetOptions.engines = options.defaultTargetOptions.engines || {};
|
|
41
|
+
let isDefaultNapiWorkerPool = false;
|
|
42
|
+
if (!napiWorkerPool) {
|
|
43
|
+
napiWorkerPool = new _NapiWorkerPool.NapiWorkerPool();
|
|
44
|
+
isDefaultNapiWorkerPool = true;
|
|
45
|
+
}
|
|
39
46
|
const [internal, error] = await (0, _rust().atlaspackNapiCreate)({
|
|
40
47
|
fs,
|
|
41
48
|
packageManager,
|
|
@@ -48,7 +55,13 @@ class AtlaspackV3 {
|
|
|
48
55
|
diagnostic: error
|
|
49
56
|
});
|
|
50
57
|
}
|
|
51
|
-
return new AtlaspackV3(internal);
|
|
58
|
+
return new AtlaspackV3(internal, napiWorkerPool, isDefaultNapiWorkerPool);
|
|
59
|
+
}
|
|
60
|
+
end() {
|
|
61
|
+
// If the worker pool was provided to us, don't shut it down, it's up to the provider.
|
|
62
|
+
if (this._isDefaultNapiWorkerPool) {
|
|
63
|
+
this._napiWorkerPool.shutdown();
|
|
64
|
+
}
|
|
52
65
|
}
|
|
53
66
|
async buildAssetGraph() {
|
|
54
67
|
let [graph, error] = await (0, _rust().atlaspackNapiBuildAssetGraph)(this._atlaspack_napi);
|
|
@@ -44,13 +44,13 @@ class Environment {
|
|
|
44
44
|
|
|
45
45
|
// TODO
|
|
46
46
|
// eslint-disable-next-line no-unused-vars
|
|
47
|
-
matchesEngines(
|
|
47
|
+
matchesEngines() {
|
|
48
48
|
return true;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
// TODO
|
|
52
52
|
// eslint-disable-next-line no-unused-vars
|
|
53
|
-
supports(
|
|
53
|
+
supports() {
|
|
54
54
|
return true;
|
|
55
55
|
}
|
|
56
56
|
}
|
|
@@ -126,32 +126,32 @@ class MutableAsset {
|
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
// eslint-disable-next-line no-unused-vars
|
|
129
|
-
addDependency(
|
|
129
|
+
addDependency() {
|
|
130
130
|
throw new Error('MutableAsset.addDependency()');
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
// eslint-disable-next-line no-unused-vars
|
|
134
|
-
addURLDependency(
|
|
134
|
+
addURLDependency() {
|
|
135
135
|
throw new Error('MutableAsset.addURLDependency()');
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
// eslint-disable-next-line no-unused-vars
|
|
139
|
-
setEnvironment(
|
|
139
|
+
setEnvironment() {
|
|
140
140
|
throw new Error('MutableAsset.setEnvironment()');
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
// eslint-disable-next-line no-unused-vars
|
|
144
|
-
invalidateOnFileChange(
|
|
144
|
+
invalidateOnFileChange() {
|
|
145
145
|
// TODO: Forward invalidations to Rust
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
// eslint-disable-next-line no-unused-vars
|
|
149
|
-
invalidateOnFileCreate(
|
|
149
|
+
invalidateOnFileCreate() {
|
|
150
150
|
// TODO: Forward invalidations to Rust
|
|
151
151
|
}
|
|
152
152
|
|
|
153
153
|
// eslint-disable-next-line no-unused-vars
|
|
154
|
-
invalidateOnEnvChange(
|
|
154
|
+
invalidateOnEnvChange() {
|
|
155
155
|
// TODO: Forward invalidations to Rust
|
|
156
156
|
}
|
|
157
157
|
invalidateOnStartup() {
|
|
@@ -40,21 +40,21 @@ class PluginConfig {
|
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
// eslint-disable-next-line no-unused-vars
|
|
43
|
-
invalidateOnFileChange(
|
|
43
|
+
invalidateOnFileChange() {}
|
|
44
44
|
|
|
45
45
|
// eslint-disable-next-line no-unused-vars
|
|
46
|
-
invalidateOnFileCreate(
|
|
46
|
+
invalidateOnFileCreate() {}
|
|
47
47
|
|
|
48
48
|
// eslint-disable-next-line no-unused-vars
|
|
49
|
-
invalidateOnEnvChange(
|
|
49
|
+
invalidateOnEnvChange() {}
|
|
50
50
|
invalidateOnStartup() {}
|
|
51
51
|
invalidateOnBuild() {}
|
|
52
52
|
|
|
53
53
|
// eslint-disable-next-line no-unused-vars
|
|
54
|
-
addDevDependency(
|
|
54
|
+
addDevDependency() {}
|
|
55
55
|
|
|
56
56
|
// eslint-disable-next-line no-unused-vars
|
|
57
|
-
setCacheKey(
|
|
57
|
+
setCacheKey() {}
|
|
58
58
|
getConfig(
|
|
59
59
|
// eslint-disable-next-line no-unused-vars
|
|
60
60
|
filePaths,
|
|
@@ -47,7 +47,7 @@ const TYPE_COLORS = {
|
|
|
47
47
|
};
|
|
48
48
|
async function dumpGraphToGraphViz(graph, name, edgeTypes) {
|
|
49
49
|
var _globalThis$ATLASPACK;
|
|
50
|
-
if (
|
|
50
|
+
if ("production" === 'production' && !process.env.ATLASPACK_BUILD_REPL) {
|
|
51
51
|
return;
|
|
52
52
|
}
|
|
53
53
|
let mode = process.env.ATLASPACK_BUILD_REPL ? // $FlowFixMe
|
|
@@ -96,7 +96,7 @@ async function createDevDependency(opts, requestDevDeps, options) {
|
|
|
96
96
|
return devDepRequest;
|
|
97
97
|
}
|
|
98
98
|
async function getDevDepRequests(api) {
|
|
99
|
-
async function getPreviousDevDepRequests() {
|
|
99
|
+
const previousDevDepRequests = await async function getPreviousDevDepRequests() {
|
|
100
100
|
if ((0, _featureFlags().getFeatureFlag)('fixBuildAbortCorruption')) {
|
|
101
101
|
const allDevDepRequests = await Promise.all(api.getSubRequests().filter(req => req.requestType === _RequestTracker.requestTypes.dev_dep_request).map(async req => [req.id, await api.getRequestResult(req.id)]));
|
|
102
102
|
const nonNullDevDepRequests = [];
|
|
@@ -109,8 +109,7 @@ async function getDevDepRequests(api) {
|
|
|
109
109
|
} else {
|
|
110
110
|
return new Map(await Promise.all(api.getSubRequests().filter(req => req.requestType === _RequestTracker.requestTypes.dev_dep_request).map(async req => [req.id, (0, _nullthrows().default)(await api.getRequestResult(req.id))])));
|
|
111
111
|
}
|
|
112
|
-
}
|
|
113
|
-
const previousDevDepRequests = await getPreviousDevDepRequests();
|
|
112
|
+
}();
|
|
114
113
|
return {
|
|
115
114
|
devDeps: new Map([...previousDevDepRequests.entries()].filter(([id]) => api.canSkipSubrequest(id)).map(([, req]) => [`${req.specifier}:${(0, _projectPath.fromProjectPathRelative)(req.resolveFrom)}`, req.hash])),
|
|
116
115
|
invalidDevDeps: await Promise.all([...previousDevDepRequests.entries()].filter(([id]) => !api.canSkipSubrequest(id)).flatMap(([, req]) => {
|
package/lib/resolveOptions.js
CHANGED
|
@@ -139,7 +139,7 @@ async function resolveOptions(initialOptions) {
|
|
|
139
139
|
// where symlinked dependencies outside the project root need to trigger HMR
|
|
140
140
|
// updates. Default to the project root if not provided.
|
|
141
141
|
let watchDir = initialOptions.watchDir != null ? _path().default.resolve(initialOptions.watchDir) : projectRoot;
|
|
142
|
-
function createCache() {
|
|
142
|
+
let cache = function createCache() {
|
|
143
143
|
if (initialOptions.cache) {
|
|
144
144
|
return initialOptions.cache;
|
|
145
145
|
}
|
|
@@ -150,8 +150,7 @@ async function resolveOptions(initialOptions) {
|
|
|
150
150
|
}
|
|
151
151
|
}
|
|
152
152
|
return new (_cache().LMDBLiteCache)(cacheDir);
|
|
153
|
-
}
|
|
154
|
-
let cache = createCache();
|
|
153
|
+
}();
|
|
155
154
|
let mode = initialOptions.mode ?? 'development';
|
|
156
155
|
let shouldOptimize = (initialOptions === null || initialOptions === void 0 || (_initialOptions$defau = initialOptions.defaultTargetOptions) === null || _initialOptions$defau === void 0 ? void 0 : _initialOptions$defau.shouldOptimize) ?? mode === 'production';
|
|
157
156
|
let publicUrl = (initialOptions === null || initialOptions === void 0 || (_initialOptions$defau2 = initialOptions.defaultTargetOptions) === null || _initialOptions$defau2 === void 0 ? void 0 : _initialOptions$defau2.publicUrl) ?? '/';
|
package/lib/worker.js
CHANGED
|
@@ -172,24 +172,7 @@ async function childInit() {
|
|
|
172
172
|
await (_rust().init === null || _rust().init === void 0 ? void 0 : (0, _rust().init)());
|
|
173
173
|
}
|
|
174
174
|
const PKG_RE = /node_modules[/\\]((?:@[^/\\]+[/\\][^/\\]+)|[^/\\]+)(?!.*[/\\]node_modules[/\\])/;
|
|
175
|
-
function invalidateRequireCache(
|
|
176
|
-
if (process.env.ATLASPACK_BUILD_ENV === 'test') {
|
|
177
|
-
// Delete this module and all children in the same node_modules folder
|
|
178
|
-
let module = require.cache[file];
|
|
179
|
-
if (module) {
|
|
180
|
-
var _file$match;
|
|
181
|
-
delete require.cache[file];
|
|
182
|
-
let pkg = (_file$match = file.match(PKG_RE)) === null || _file$match === void 0 ? void 0 : _file$match[1];
|
|
183
|
-
for (let child of module.children) {
|
|
184
|
-
var _child$id$match;
|
|
185
|
-
if (pkg === ((_child$id$match = child.id.match(PKG_RE)) === null || _child$id$match === void 0 ? void 0 : _child$id$match[1])) {
|
|
186
|
-
invalidateRequireCache(workerApi, child.id);
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
atlaspackConfigCache.clear();
|
|
191
|
-
return;
|
|
192
|
-
}
|
|
175
|
+
function invalidateRequireCache() {
|
|
193
176
|
throw new Error('invalidateRequireCache is only for tests');
|
|
194
177
|
}
|
|
195
178
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/core",
|
|
3
|
-
"version": "2.18.7
|
|
3
|
+
"version": "2.18.7",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -21,22 +21,22 @@
|
|
|
21
21
|
"check-ts": "tsc --noEmit index.d.ts"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@atlaspack/build-cache": "2.13.4-typescript-8a6ec6c8b.0",
|
|
25
|
-
"@atlaspack/cache": "3.2.11-typescript-8a6ec6c8b.0",
|
|
26
|
-
"@atlaspack/diagnostic": "2.14.2-typescript-8a6ec6c8b.0",
|
|
27
|
-
"@atlaspack/events": "2.14.2-typescript-8a6ec6c8b.0",
|
|
28
|
-
"@atlaspack/feature-flags": "2.18.4-typescript-8a6ec6c8b.0",
|
|
29
|
-
"@atlaspack/fs": "2.15.11-typescript-8a6ec6c8b.0",
|
|
30
|
-
"@atlaspack/graph": "3.5.6-typescript-8a6ec6c8b.0",
|
|
31
|
-
"@atlaspack/logger": "2.14.12-typescript-8a6ec6c8b.0",
|
|
32
|
-
"@atlaspack/package-manager": "2.14.16-typescript-8a6ec6c8b.0",
|
|
33
|
-
"@atlaspack/plugin": "2.14.16-typescript-8a6ec6c8b.0",
|
|
34
|
-
"@atlaspack/profiler": "2.14.14-typescript-8a6ec6c8b.0",
|
|
35
|
-
"@atlaspack/rust": "3.3.6-typescript-8a6ec6c8b.0",
|
|
36
|
-
"@atlaspack/types": "2.15.6-typescript-8a6ec6c8b.0",
|
|
37
|
-
"@atlaspack/utils": "2.15.4-typescript-8a6ec6c8b.0",
|
|
38
|
-
"@atlaspack/workers": "2.14.16-typescript-8a6ec6c8b.0",
|
|
39
24
|
"@mischnic/json-sourcemap": "^0.1.0",
|
|
25
|
+
"@atlaspack/build-cache": "2.13.3",
|
|
26
|
+
"@atlaspack/cache": "3.2.11",
|
|
27
|
+
"@atlaspack/diagnostic": "2.14.1",
|
|
28
|
+
"@atlaspack/events": "2.14.1",
|
|
29
|
+
"@atlaspack/feature-flags": "2.18.4",
|
|
30
|
+
"@atlaspack/fs": "2.15.11",
|
|
31
|
+
"@atlaspack/graph": "3.5.6",
|
|
32
|
+
"@atlaspack/logger": "2.14.11",
|
|
33
|
+
"@atlaspack/package-manager": "2.14.16",
|
|
34
|
+
"@atlaspack/plugin": "2.14.16",
|
|
35
|
+
"@atlaspack/profiler": "2.14.14",
|
|
36
|
+
"@atlaspack/rust": "3.3.5",
|
|
37
|
+
"@atlaspack/types": "2.15.6",
|
|
38
|
+
"@atlaspack/utils": "2.16.0",
|
|
39
|
+
"@atlaspack/workers": "2.14.16",
|
|
40
40
|
"@parcel/source-map": "^2.1.1",
|
|
41
41
|
"base-x": "^3.0.8",
|
|
42
42
|
"browserslist": "^4.6.6",
|
|
@@ -49,16 +49,15 @@
|
|
|
49
49
|
"semver": "^7.5.2"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@atlaspack/babel-register": "2.14.
|
|
52
|
+
"@atlaspack/babel-register": "2.14.1",
|
|
53
53
|
"@types/node": ">= 18",
|
|
54
|
-
"graphviz": "^0.0.9",
|
|
55
|
-
"jest-diff": "*",
|
|
56
54
|
"rfdc": "1",
|
|
55
|
+
"jest-diff": "*",
|
|
56
|
+
"graphviz": "^0.0.9",
|
|
57
57
|
"tempy": "^0.2.1"
|
|
58
58
|
},
|
|
59
59
|
"browser": {
|
|
60
60
|
"./src/serializerCore.js": "./src/serializerCore.browser.js"
|
|
61
61
|
},
|
|
62
|
-
"type": "commonjs"
|
|
63
|
-
"gitHead": "8a6ec6c8bed0bbf5461f5b0f899577a576906051"
|
|
62
|
+
"type": "commonjs"
|
|
64
63
|
}
|
package/src/Atlaspack.js
CHANGED
|
@@ -190,6 +190,12 @@ export default class Atlaspack {
|
|
|
190
190
|
}
|
|
191
191
|
this.rustAtlaspack = rustAtlaspack;
|
|
192
192
|
|
|
193
|
+
if (featureFlags.atlaspackV3CleanShutdown) {
|
|
194
|
+
this.#disposable.add(() => {
|
|
195
|
+
rustAtlaspack.end();
|
|
196
|
+
});
|
|
197
|
+
}
|
|
198
|
+
|
|
193
199
|
let {config} = await loadAtlaspackConfig(resolvedOptions);
|
|
194
200
|
this.#config = new AtlaspackConfig(config, resolvedOptions);
|
|
195
201
|
|
|
@@ -386,6 +392,11 @@ export default class Atlaspack {
|
|
|
386
392
|
}
|
|
387
393
|
if (options.shouldTrace) {
|
|
388
394
|
tracer.enable();
|
|
395
|
+
// We need to ensure the tracer is disabled when Atlaspack is disposed as it is a module level object.
|
|
396
|
+
// While rare (except for tests), if another instance is created later it should not have tracing enabled.
|
|
397
|
+
this.#disposable.add(() => {
|
|
398
|
+
tracer.disable();
|
|
399
|
+
});
|
|
389
400
|
}
|
|
390
401
|
await this.#reporterRunner.report({
|
|
391
402
|
type: 'buildStart',
|
|
@@ -28,9 +28,17 @@ export type AtlaspackV3Options = {|
|
|
|
28
28
|
|
|
29
29
|
export class AtlaspackV3 {
|
|
30
30
|
_atlaspack_napi: AtlaspackNapi;
|
|
31
|
+
_napiWorkerPool: INapiWorkerPool;
|
|
32
|
+
_isDefaultNapiWorkerPool: boolean;
|
|
31
33
|
|
|
32
|
-
constructor(
|
|
34
|
+
constructor(
|
|
35
|
+
atlaspack_napi: AtlaspackNapi,
|
|
36
|
+
napiWorkerPool: INapiWorkerPool,
|
|
37
|
+
isDefaultNapiWorkerPool: boolean,
|
|
38
|
+
) {
|
|
33
39
|
this._atlaspack_napi = atlaspack_napi;
|
|
40
|
+
this._napiWorkerPool = napiWorkerPool;
|
|
41
|
+
this._isDefaultNapiWorkerPool = isDefaultNapiWorkerPool;
|
|
34
42
|
}
|
|
35
43
|
|
|
36
44
|
static async create({
|
|
@@ -38,7 +46,7 @@ export class AtlaspackV3 {
|
|
|
38
46
|
packageManager,
|
|
39
47
|
threads,
|
|
40
48
|
lmdb,
|
|
41
|
-
napiWorkerPool
|
|
49
|
+
napiWorkerPool,
|
|
42
50
|
...options
|
|
43
51
|
}: AtlaspackV3Options): Promise<AtlaspackV3> {
|
|
44
52
|
options.logLevel = options.logLevel || 'error';
|
|
@@ -47,6 +55,12 @@ export class AtlaspackV3 {
|
|
|
47
55
|
options.defaultTargetOptions.engines =
|
|
48
56
|
options.defaultTargetOptions.engines || {};
|
|
49
57
|
|
|
58
|
+
let isDefaultNapiWorkerPool = false;
|
|
59
|
+
if (!napiWorkerPool) {
|
|
60
|
+
napiWorkerPool = new NapiWorkerPool();
|
|
61
|
+
isDefaultNapiWorkerPool = true;
|
|
62
|
+
}
|
|
63
|
+
|
|
50
64
|
const [internal, error] = await atlaspackNapiCreate(
|
|
51
65
|
{
|
|
52
66
|
fs,
|
|
@@ -64,7 +78,14 @@ export class AtlaspackV3 {
|
|
|
64
78
|
});
|
|
65
79
|
}
|
|
66
80
|
|
|
67
|
-
return new AtlaspackV3(internal);
|
|
81
|
+
return new AtlaspackV3(internal, napiWorkerPool, isDefaultNapiWorkerPool);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
end(): void {
|
|
85
|
+
// If the worker pool was provided to us, don't shut it down, it's up to the provider.
|
|
86
|
+
if (this._isDefaultNapiWorkerPool) {
|
|
87
|
+
this._napiWorkerPool.shutdown();
|
|
88
|
+
}
|
|
68
89
|
}
|
|
69
90
|
|
|
70
91
|
async buildAssetGraph(): Promise<any> {
|
package/LICENSE
DELETED
|
@@ -1,201 +0,0 @@
|
|
|
1
|
-
Apache License
|
|
2
|
-
Version 2.0, January 2004
|
|
3
|
-
http://www.apache.org/licenses/
|
|
4
|
-
|
|
5
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
-
|
|
7
|
-
1. Definitions.
|
|
8
|
-
|
|
9
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
-
|
|
12
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
-
the copyright owner that is granting the License.
|
|
14
|
-
|
|
15
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
-
other entities that control, are controlled by, or are under common
|
|
17
|
-
control with that entity. For the purposes of this definition,
|
|
18
|
-
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
-
direction or management of such entity, whether by contract or
|
|
20
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
-
|
|
23
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
-
exercising permissions granted by this License.
|
|
25
|
-
|
|
26
|
-
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
-
including but not limited to software source code, documentation
|
|
28
|
-
source, and configuration files.
|
|
29
|
-
|
|
30
|
-
"Object" form shall mean any form resulting from mechanical
|
|
31
|
-
transformation or translation of a Source form, including but
|
|
32
|
-
not limited to compiled object code, generated documentation,
|
|
33
|
-
and conversions to other media types.
|
|
34
|
-
|
|
35
|
-
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
-
Object form, made available under the License, as indicated by a
|
|
37
|
-
copyright notice that is included in or attached to the work
|
|
38
|
-
(an example is provided in the Appendix below).
|
|
39
|
-
|
|
40
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
-
form, that is based on (or derived from) the Work and for which the
|
|
42
|
-
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
-
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
-
of this License, Derivative Works shall not include works that remain
|
|
45
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
-
the Work and Derivative Works thereof.
|
|
47
|
-
|
|
48
|
-
"Contribution" shall mean any work of authorship, including
|
|
49
|
-
the original version of the Work and any modifications or additions
|
|
50
|
-
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
-
means any form of electronic, verbal, or written communication sent
|
|
55
|
-
to the Licensor or its representatives, including but not limited to
|
|
56
|
-
communication on electronic mailing lists, source code control systems,
|
|
57
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
-
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
-
excluding communication that is conspicuously marked or otherwise
|
|
60
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
-
|
|
62
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
-
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
-
subsequently incorporated within the Work.
|
|
65
|
-
|
|
66
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
-
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
-
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
-
Work and such Derivative Works in Source or Object form.
|
|
72
|
-
|
|
73
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
-
(except as stated in this section) patent license to make, have made,
|
|
77
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
-
where such license applies only to those patent claims licensable
|
|
79
|
-
by such Contributor that are necessarily infringed by their
|
|
80
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
-
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
-
institute patent litigation against any entity (including a
|
|
83
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
-
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
-
or contributory patent infringement, then any patent licenses
|
|
86
|
-
granted to You under this License for that Work shall terminate
|
|
87
|
-
as of the date such litigation is filed.
|
|
88
|
-
|
|
89
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
-
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
-
modifications, and in Source or Object form, provided that You
|
|
92
|
-
meet the following conditions:
|
|
93
|
-
|
|
94
|
-
(a) You must give any other recipients of the Work or
|
|
95
|
-
Derivative Works a copy of this License; and
|
|
96
|
-
|
|
97
|
-
(b) You must cause any modified files to carry prominent notices
|
|
98
|
-
stating that You changed the files; and
|
|
99
|
-
|
|
100
|
-
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
-
that You distribute, all copyright, patent, trademark, and
|
|
102
|
-
attribution notices from the Source form of the Work,
|
|
103
|
-
excluding those notices that do not pertain to any part of
|
|
104
|
-
the Derivative Works; and
|
|
105
|
-
|
|
106
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
-
distribution, then any Derivative Works that You distribute must
|
|
108
|
-
include a readable copy of the attribution notices contained
|
|
109
|
-
within such NOTICE file, excluding those notices that do not
|
|
110
|
-
pertain to any part of the Derivative Works, in at least one
|
|
111
|
-
of the following places: within a NOTICE text file distributed
|
|
112
|
-
as part of the Derivative Works; within the Source form or
|
|
113
|
-
documentation, if provided along with the Derivative Works; or,
|
|
114
|
-
within a display generated by the Derivative Works, if and
|
|
115
|
-
wherever such third-party notices normally appear. The contents
|
|
116
|
-
of the NOTICE file are for informational purposes only and
|
|
117
|
-
do not modify the License. You may add Your own attribution
|
|
118
|
-
notices within Derivative Works that You distribute, alongside
|
|
119
|
-
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
-
that such additional attribution notices cannot be construed
|
|
121
|
-
as modifying the License.
|
|
122
|
-
|
|
123
|
-
You may add Your own copyright statement to Your modifications and
|
|
124
|
-
may provide additional or different license terms and conditions
|
|
125
|
-
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
-
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
-
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
-
the conditions stated in this License.
|
|
129
|
-
|
|
130
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
-
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
-
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
-
this License, without any additional terms or conditions.
|
|
134
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
-
the terms of any separate license agreement you may have executed
|
|
136
|
-
with Licensor regarding such Contributions.
|
|
137
|
-
|
|
138
|
-
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
-
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
-
except as required for reasonable and customary use in describing the
|
|
141
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
-
|
|
143
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
-
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
-
implied, including, without limitation, any warranties or conditions
|
|
148
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
-
appropriateness of using or redistributing the Work and assume any
|
|
151
|
-
risks associated with Your exercise of permissions under this License.
|
|
152
|
-
|
|
153
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
-
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
-
unless required by applicable law (such as deliberate and grossly
|
|
156
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
-
liable to You for damages, including any direct, indirect, special,
|
|
158
|
-
incidental, or consequential damages of any character arising as a
|
|
159
|
-
result of this License or out of the use or inability to use the
|
|
160
|
-
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
-
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
-
other commercial damages or losses), even if such Contributor
|
|
163
|
-
has been advised of the possibility of such damages.
|
|
164
|
-
|
|
165
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
-
or other liability obligations and/or rights consistent with this
|
|
169
|
-
License. However, in accepting such obligations, You may act only
|
|
170
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
-
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
-
defend, and hold each Contributor harmless for any liability
|
|
173
|
-
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
-
of your accepting any such warranty or additional liability.
|
|
175
|
-
|
|
176
|
-
END OF TERMS AND CONDITIONS
|
|
177
|
-
|
|
178
|
-
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
-
|
|
180
|
-
To apply the Apache License to your work, attach the following
|
|
181
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
-
replaced with your own identifying information. (Don't include
|
|
183
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
-
comment syntax for the file format. We also recommend that a
|
|
185
|
-
file or class name and description of purpose be included on the
|
|
186
|
-
same "printed page" as the copyright notice for easier
|
|
187
|
-
identification within third-party archives.
|
|
188
|
-
|
|
189
|
-
Copyright (c) 2024 Atlassian US., Inc.
|
|
190
|
-
|
|
191
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
-
you may not use this file except in compliance with the License.
|
|
193
|
-
You may obtain a copy of the License at
|
|
194
|
-
|
|
195
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
-
|
|
197
|
-
Unless required by applicable law or agreed to in writing, software
|
|
198
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
-
See the License for the specific language governing permissions and
|
|
201
|
-
limitations under the License.
|