@pdg/crypto 1.0.4 → 1.0.5
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/index.d.ts +2 -2
- package/package.json +3 -2
- /package/dist/{_md5.d.ts → md5.d.ts} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './md5';
|
|
2
2
|
export * from './base64';
|
|
3
3
|
export * from './sha1';
|
|
4
4
|
export * from './sha256';
|
|
5
|
-
import md5 from './
|
|
5
|
+
import md5 from './md5';
|
|
6
6
|
import sha1 from './sha1';
|
|
7
7
|
import sha256 from './sha256';
|
|
8
8
|
declare const _default: {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@pdg/crypto",
|
|
3
3
|
"title": "Typescript Crypto Module",
|
|
4
4
|
"description": "Typescript Crypto Module",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.5",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"module": "./dist/index.esm.js",
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
],
|
|
30
30
|
"scripts": {
|
|
31
31
|
"dev": "cd examples && npm run dev",
|
|
32
|
-
"
|
|
32
|
+
"watchman:del": "watchman watch-del \"${PWD}\" ; watchman watch-project \"${PWD}\"",
|
|
33
|
+
"build": "npm run watchman:del && npm run test && npm run lint && rollup -c --bundleConfigAsCjs",
|
|
33
34
|
"git:commit": "node .git-commit.cjs",
|
|
34
35
|
"git:push": "git push",
|
|
35
36
|
"git:commit:push": "npm run git:commit && npm run git:push",
|
|
File without changes
|