@jsii/kernel 1.84.0 → 1.85.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/lib/api.d.ts CHANGED
@@ -95,7 +95,7 @@ export interface CreateRequest {
95
95
  /**
96
96
  * The FQNs of interfaces the instance implements, if any. Declaring
97
97
  * interfaces that the class denoted by `fqn` implements is not necessary.
98
- * This means that memebers of interfaces found in this property should
98
+ * This means that members of interfaces found in this property should
99
99
  * declare members that are found in the `overrides` property.
100
100
  */
101
101
  readonly interfaces?: string[];
package/lib/link.d.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  * copy otherwise.
4
4
  *
5
5
  * @param existing is the original file or directory to link.
6
- * @param destination is the nbew file or directory to create.
6
+ * @param destination is the new file or directory to create.
7
7
  */
8
8
  export declare function link(existing: string, destination: string): void;
9
9
  //# sourceMappingURL=link.d.ts.map
package/lib/link.js CHANGED
@@ -8,7 +8,7 @@ const path_1 = require("path");
8
8
  * copy otherwise.
9
9
  *
10
10
  * @param existing is the original file or directory to link.
11
- * @param destination is the nbew file or directory to create.
11
+ * @param destination is the new file or directory to create.
12
12
  */
13
13
  function link(existing, destination) {
14
14
  const stat = (0, fs_1.statSync)(existing);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsii/kernel",
3
- "version": "1.84.0",
3
+ "version": "1.85.0",
4
4
  "description": "kernel for jsii execution environment",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -31,19 +31,19 @@
31
31
  "package": "package-js"
32
32
  },
33
33
  "dependencies": {
34
- "@jsii/spec": "^1.84.0",
34
+ "@jsii/spec": "^1.85.0",
35
35
  "fs-extra": "^10.1.0",
36
36
  "lockfile": "^1.0.4",
37
37
  "tar": "^6.1.15"
38
38
  },
39
39
  "devDependencies": {
40
- "@scope/jsii-calc-base": "^1.84.0",
41
- "@scope/jsii-calc-lib": "^1.84.0",
40
+ "@scope/jsii-calc-base": "^1.85.0",
41
+ "@scope/jsii-calc-lib": "^1.85.0",
42
42
  "@types/fs-extra": "^9.0.13",
43
43
  "@types/lockfile": "^1.0.2",
44
44
  "@types/tar": "^6.1.5",
45
45
  "jest-expect-message": "^1.1.3",
46
- "jsii-build-tools": "^1.84.0",
46
+ "jsii-build-tools": "^1.85.0",
47
47
  "jsii-calc": "^3.20.120"
48
48
  }
49
49
  }