@atlaspack/workers 2.12.1-dev.3365 → 2.12.1-dev.3398

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.
@@ -29,7 +29,7 @@ class WebWorker {
29
29
  start() {
30
30
  // $FlowFixMe[incompatible-call]
31
31
  this.worker = new Worker(new URL('./WebChild.js', import.meta.url), {
32
- name: `Atlaspack Worker ${id++}`,
32
+ name: `Parcel Worker ${id++}`,
33
33
  type: 'module'
34
34
  });
35
35
  let {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/workers",
3
- "version": "2.12.1-dev.3365+fc95bf726",
3
+ "version": "2.12.1-dev.3398+81c73b3cd",
4
4
  "description": "Blazing fast, zero configuration web application bundler",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -17,20 +17,20 @@
17
17
  "node": ">= 16.0.0"
18
18
  },
19
19
  "dependencies": {
20
- "@atlaspack/diagnostic": "2.12.1-dev.3365+fc95bf726",
21
- "@atlaspack/logger": "2.12.1-dev.3365+fc95bf726",
22
- "@atlaspack/profiler": "2.12.1-dev.3365+fc95bf726",
23
- "@atlaspack/types-internal": "2.12.1-dev.3365+fc95bf726",
24
- "@atlaspack/utils": "2.12.1-dev.3365+fc95bf726",
20
+ "@atlaspack/diagnostic": "2.12.1-dev.3398+81c73b3cd",
21
+ "@atlaspack/logger": "2.12.1-dev.3398+81c73b3cd",
22
+ "@atlaspack/profiler": "2.12.1-dev.3398+81c73b3cd",
23
+ "@atlaspack/types-internal": "2.12.1-dev.3398+81c73b3cd",
24
+ "@atlaspack/utils": "2.12.1-dev.3398+81c73b3cd",
25
25
  "nullthrows": "^1.1.1"
26
26
  },
27
27
  "peerDependencies": {
28
- "@atlaspack/core": "^2.12.1-dev.3365+fc95bf726"
28
+ "@atlaspack/core": "^2.12.1-dev.3398+81c73b3cd"
29
29
  },
30
30
  "browser": {
31
31
  "./src/process/ProcessWorker.js": false,
32
32
  "./src/threads/ThreadsWorker.js": false,
33
33
  "./src/core-worker.js": "./src/core-worker.browser.js"
34
34
  },
35
- "gitHead": "fc95bf7264a7c557592ab9457e8a9539571cc838"
35
+ "gitHead": "81c73b3cdf93adf8b0013be9fed5422579bd5910"
36
36
  }
@@ -38,7 +38,7 @@ export default class WebWorker implements WorkerImpl {
38
38
  start(): Promise<void> {
39
39
  // $FlowFixMe[incompatible-call]
40
40
  this.worker = new Worker(new URL('./WebChild.js', import.meta.url), {
41
- name: `Atlaspack Worker ${id++}`,
41
+ name: `Parcel Worker ${id++}`,
42
42
  type: 'module',
43
43
  });
44
44