@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 +5 -0
- package/dist-es/crc64-nvme-crt-container.js +3 -0
- package/dist-es/index.js +1 -0
- package/dist-types/crc64-nvme-crt-container.d.ts +13 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/crc64-nvme-crt-container.d.ts +4 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +3 -4
package/dist-cjs/index.js
CHANGED
package/dist-es/index.js
CHANGED
|
@@ -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
|
+
};
|
package/dist-types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/crc64-nvme",
|
|
3
|
-
"version": "3.
|
|
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": "
|
|
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": "
|
|
35
|
+
"rimraf": "5.0.10",
|
|
37
36
|
"typescript": "~5.8.3"
|
|
38
37
|
},
|
|
39
38
|
"engines": {
|