@atlaspack/watcher-watchman-js 2.14.27-inline-requires-take-2-850fb4568.0 → 2.14.28-dev-optimised-prelude-6fa233c65.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @atlaspack/watcher-watchman-js
2
2
 
3
+ ## 2.14.27
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @atlaspack/utils@2.18.4
9
+ - @atlaspack/logger@2.14.19
10
+
3
11
  ## 2.14.26
4
12
 
5
13
  ### Patch Changes
package/lib/wrapper.js CHANGED
@@ -42,8 +42,6 @@ function _logger() {
42
42
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
43
43
  function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
44
44
  function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
45
- // @ts-expect-error TS7016
46
-
47
45
  // Matches the Watcher API from "@parcel/watcher"
48
46
 
49
47
  class AtlaspackWatcherWatchmanJS {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/watcher-watchman-js",
3
- "version": "2.14.27-inline-requires-take-2-850fb4568.0",
3
+ "version": "2.14.28-dev-optimised-prelude-6fa233c65.0",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "main": "./lib/index.js",
6
6
  "source": "./src/index.ts",
@@ -9,9 +9,10 @@
9
9
  "access": "public"
10
10
  },
11
11
  "dependencies": {
12
- "@atlaspack/logger": "2.14.19-inline-requires-take-2-850fb4568.0",
13
- "@atlaspack/utils": "2.18.4-inline-requires-take-2-850fb4568.0",
12
+ "@atlaspack/logger": "2.14.20-dev-optimised-prelude-6fa233c65.0",
13
+ "@atlaspack/utils": "2.18.5-dev-optimised-prelude-6fa233c65.0",
14
14
  "@parcel/watcher": "^2.4.1",
15
+ "@types/fb-watchman": "^2.0.2",
15
16
  "fb-watchman": "^2.0.2"
16
17
  },
17
18
  "type": "commonjs",
@@ -19,5 +20,5 @@
19
20
  "check-ts": "tsc --emitDeclarationOnly --rootDir src",
20
21
  "build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
21
22
  },
22
- "gitHead": "850fb4568e775c8c938e92c1ec0b99d9724ae2c3"
23
+ "gitHead": "6fa233c656e8abea0878044e1fc0dc2023077a53"
23
24
  }
package/src/wrapper.ts CHANGED
@@ -1,6 +1,5 @@
1
1
  import * as fs from 'fs';
2
2
  import * as path from 'path';
3
- // @ts-expect-error TS7016
4
3
  import * as watchman from 'fb-watchman';
5
4
  import {isGlob} from '@atlaspack/utils';
6
5
  import logger from '@atlaspack/logger';