@aws-sdk/crc64-nvme 3.956.0 → 3.965.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/dist-cjs/index.js CHANGED
@@ -93,4 +93,9 @@ class Crc64Nvme {
93
93
  }
94
94
  }
95
95
 
96
+ const crc64NvmeCrtContainer = {
97
+ CrtCrc64Nvme: null,
98
+ };
99
+
96
100
  exports.Crc64Nvme = Crc64Nvme;
101
+ exports.crc64NvmeCrtContainer = crc64NvmeCrtContainer;
@@ -0,0 +1,3 @@
1
+ export const crc64NvmeCrtContainer = {
2
+ CrtCrc64Nvme: null,
3
+ };
package/dist-es/index.js CHANGED
@@ -1 +1,2 @@
1
1
  export * from "./Crc64Nvme";
2
+ export * from "./crc64-nvme-crt-container";
@@ -0,0 +1,13 @@
1
+ import { ChecksumConstructor } from "@smithy/types";
2
+ /**
3
+ * @internal
4
+ *
5
+ * \@aws-sdk/crc64-nvme-crt will install the constructor in this
6
+ * container if it is installed.
7
+ *
8
+ * This avoids a runtime-require being interpreted statically by bundlers.
9
+ *
10
+ */
11
+ export declare const crc64NvmeCrtContainer: {
12
+ CrtCrc64Nvme: null | ChecksumConstructor;
13
+ };
@@ -1 +1,2 @@
1
1
  export * from "./Crc64Nvme";
2
+ export * from "./crc64-nvme-crt-container";
@@ -0,0 +1,4 @@
1
+ import { ChecksumConstructor } from "@smithy/types";
2
+ export declare const crc64NvmeCrtContainer: {
3
+ CrtCrc64Nvme: null | ChecksumConstructor;
4
+ };
@@ -1 +1,2 @@
1
1
  export * from "./Crc64Nvme";
2
+ export * from "./crc64-nvme-crt-container";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/crc64-nvme",
3
- "version": "3.956.0",
3
+ "version": "3.965.0",
4
4
  "description": "A pure JS implementation of CRC64-NVME checksum",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -9,7 +9,7 @@
9
9
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
10
10
  "build:cjs": "node ../../scripts/compilation/inline crc64-nvme",
11
11
  "build:es": "tsc -p tsconfig.es.json",
12
- "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
12
+ "build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
13
13
  "build:types": "tsc -p tsconfig.types.json",
14
14
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
15
15
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
@@ -28,12 +28,11 @@
28
28
  "tslib": "^2.6.2"
29
29
  },
30
30
  "devDependencies": {
31
- "@aws-sdk/crc64-nvme-crt": "3.956.0",
32
31
  "@smithy/util-base64": "^4.3.0",
33
32
  "@tsconfig/recommended": "1.0.1",
34
33
  "concurrently": "7.0.0",
35
34
  "downlevel-dts": "0.10.1",
36
- "rimraf": "3.0.2",
35
+ "rimraf": "5.0.10",
37
36
  "typescript": "~5.8.3"
38
37
  },
39
38
  "engines": {