@mochabug/adaptkit 0.11.1 → 0.11.3

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.
Files changed (2) hide show
  1. package/bin/index.js +2 -2
  2. package/package.json +2 -2
package/bin/index.js CHANGED
@@ -1575,7 +1575,7 @@ function createArchive(folder) {
1575
1575
  bufferStream.on('data', (data) => buffers.push(data));
1576
1576
  bufferStream.on('end', () => {
1577
1577
  const res = Buffer.concat(buffers);
1578
- console.log('Assets have been compressed successfully into a buffer.');
1578
+ console.log(`${folder} have been compressed successfully into a buffer.`);
1579
1579
  resolve(res); // Resolve the promise with the final buffer
1580
1580
  });
1581
1581
  archive.pipe(bufferStream);
@@ -1862,7 +1862,7 @@ async function handleEmulate(host, cmd) {
1862
1862
  }
1863
1863
  async function main() {
1864
1864
  const notifier = updateNotifier({
1865
- pkg: JSON.parse('{"name":"@mochabug/adaptkit","version":"0.11.1"}')
1865
+ pkg: JSON.parse('{"name":"@mochabug/adaptkit","version":"0.11.3"}')
1866
1866
  });
1867
1867
  notifier.notify({ isGlobal: true, defer: false });
1868
1868
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mochabug/adaptkit",
3
- "version": "0.11.1",
3
+ "version": "0.11.3",
4
4
  "description": "A cmd to create, emulate and publish Mochabug Adapt plugins",
5
5
  "main": "bin/index.js",
6
6
  "type": "module",
@@ -54,7 +54,7 @@
54
54
  "@types/node": "^22.5.1",
55
55
  "@types/update-notifier": "^6.0.8",
56
56
  "jest": "^29.7.0",
57
- "rollup": "^4.21.1",
57
+ "rollup": "^4.21.2",
58
58
  "rollup-plugin-string": "^3.0.0",
59
59
  "ts-jest": "^29.2.5",
60
60
  "ts-node": "^10.9.2",