@coralogix/esbuild-plugin 0.8.0 → 0.11.0
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 +16 -0
- package/index.cjs.js +5 -5
- package/index.esm.js +5 -5
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## 0.11.0 (2025-10-24)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for esbuild-plugin to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
5
|
+
## 0.10.0 (2024-12-21)
|
|
6
|
+
|
|
7
|
+
### 🚀 Features
|
|
8
|
+
|
|
9
|
+
- **esbuild-plugin:** update peerDependencies for esbuild ([1136604](https://github.com/coralogix/coralogix-javascript-bundler-plugins/commit/1136604))
|
|
10
|
+
|
|
11
|
+
## 0.9.0 (2024-12-21)
|
|
12
|
+
|
|
13
|
+
### 🚀 Features
|
|
14
|
+
|
|
15
|
+
- **esbuild-plugin:** update peerDependencies for esbuild ([1136604](https://github.com/coralogix/coralogix-javascript-bundler-plugins/commit/1136604))
|
|
16
|
+
|
|
1
17
|
## 0.8.0 (2024-12-03)
|
|
2
18
|
|
|
3
19
|
### 🚀 Features
|
package/index.cjs.js
CHANGED
|
@@ -9,22 +9,22 @@ function addMetadata(result, metadata) {
|
|
|
9
9
|
path: MFE_METADATA_KEY,
|
|
10
10
|
contents: new TextEncoder().encode(metadataJson),
|
|
11
11
|
text: metadataJson,
|
|
12
|
-
hash: ''
|
|
12
|
+
hash: '',
|
|
13
13
|
});
|
|
14
14
|
}
|
|
15
15
|
function coralogixEsbuildPlugin(options) {
|
|
16
16
|
const { app, version } = options;
|
|
17
17
|
return {
|
|
18
18
|
name: 'coralogixEsbuildPluginWithOptions',
|
|
19
|
-
setup
|
|
20
|
-
build.onEnd((result)=>{
|
|
19
|
+
setup(build) {
|
|
20
|
+
build.onEnd((result) => {
|
|
21
21
|
const metadata = {
|
|
22
22
|
app,
|
|
23
|
-
version
|
|
23
|
+
version,
|
|
24
24
|
};
|
|
25
25
|
addMetadata(result, metadata);
|
|
26
26
|
});
|
|
27
|
-
}
|
|
27
|
+
},
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
30
|
|
package/index.esm.js
CHANGED
|
@@ -7,22 +7,22 @@ function addMetadata(result, metadata) {
|
|
|
7
7
|
path: MFE_METADATA_KEY,
|
|
8
8
|
contents: new TextEncoder().encode(metadataJson),
|
|
9
9
|
text: metadataJson,
|
|
10
|
-
hash: ''
|
|
10
|
+
hash: '',
|
|
11
11
|
});
|
|
12
12
|
}
|
|
13
13
|
function coralogixEsbuildPlugin(options) {
|
|
14
14
|
const { app, version } = options;
|
|
15
15
|
return {
|
|
16
16
|
name: 'coralogixEsbuildPluginWithOptions',
|
|
17
|
-
setup
|
|
18
|
-
build.onEnd((result)=>{
|
|
17
|
+
setup(build) {
|
|
18
|
+
build.onEnd((result) => {
|
|
19
19
|
const metadata = {
|
|
20
20
|
app,
|
|
21
|
-
version
|
|
21
|
+
version,
|
|
22
22
|
};
|
|
23
23
|
addMetadata(result, metadata);
|
|
24
24
|
});
|
|
25
|
-
}
|
|
25
|
+
},
|
|
26
26
|
};
|
|
27
27
|
}
|
|
28
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coralogix/esbuild-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Official Coralogix Esbuild plugin",
|
|
5
5
|
"author": "Coralogix",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"access": "public"
|
|
9
9
|
},
|
|
10
10
|
"peerDependencies": {
|
|
11
|
-
"esbuild": ">=0.
|
|
11
|
+
"esbuild": ">=0.19.2"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"coralogix",
|