@learncard/learn-cloud-plugin 2.3.25 → 2.3.27
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.js → index.cjs} +2 -2
- package/dist/index.d.cts +3 -0
- package/dist/{learn-cloud-plugin.cjs.development.js → learn-cloud-plugin.cjs.development.cjs} +47 -14
- package/dist/{learn-cloud-plugin.cjs.development.js.map → learn-cloud-plugin.cjs.development.cjs.map} +3 -3
- package/dist/learn-cloud-plugin.cjs.production.min.cjs +56 -0
- package/dist/{learn-cloud-plugin.cjs.production.min.js.map → learn-cloud-plugin.cjs.production.min.cjs.map} +3 -3
- package/dist/learn-cloud-plugin.esm.js +47 -14
- package/dist/learn-cloud-plugin.esm.js.map +3 -3
- package/dist/plugin.d.ts.map +1 -1
- package/package.json +22 -9
- package/dist/learn-cloud-plugin.cjs.production.min.js +0 -56
package/dist/plugin.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAc5C,OAAO,EAAE,gCAAgC,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAS7E,cAAc,SAAS,CAAC;AAqCxB;;GAEG;AACH,eAAO,MAAM,mBAAmB,qBACV,SAAS,CAAC,GAAG,EAAE,IAAI,EAAE,gCAAgC,CAAC,OACnE,MAAM,sBACQ,MAAM,EAAE,4BACF,MAAM,EAAE,2CAElC,OAAO,CAAC,gBAAgB,CA+nB1B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,9 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@learncard/learn-cloud-plugin",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.27",
|
|
4
4
|
"description": "",
|
|
5
|
-
"
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
6
7
|
"module": "./dist/learn-cloud-plugin.esm.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"default": "./dist/learn-cloud-plugin.esm.js"
|
|
13
|
+
},
|
|
14
|
+
"require": {
|
|
15
|
+
"types": "./dist/index.d.cts",
|
|
16
|
+
"default": "./dist/index.cjs"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
7
20
|
"files": [
|
|
8
21
|
"dist"
|
|
9
22
|
],
|
|
@@ -28,22 +41,22 @@
|
|
|
28
41
|
"jest": "^29.3.0",
|
|
29
42
|
"shx": "^0.3.4",
|
|
30
43
|
"ts-jest": "^29.0.3",
|
|
31
|
-
"@learncard/learn-cloud-service": "^2.5.
|
|
32
|
-
"@learncard/types": "5.17.
|
|
44
|
+
"@learncard/learn-cloud-service": "^2.5.20",
|
|
45
|
+
"@learncard/types": "5.17.2"
|
|
33
46
|
},
|
|
34
47
|
"types": "./dist/index.d.ts",
|
|
35
48
|
"dependencies": {
|
|
36
49
|
"json-stringify-deterministic": "^1.0.8",
|
|
37
50
|
"lodash": "^4.17.21",
|
|
38
51
|
"pbkdf2-hmac": "^1.2.1",
|
|
39
|
-
"@learncard/
|
|
40
|
-
"@learncard/
|
|
41
|
-
"@learncard/
|
|
42
|
-
"@learncard/
|
|
52
|
+
"@learncard/didkit-plugin": "1.9.2",
|
|
53
|
+
"@learncard/learn-cloud-client": "1.6.27",
|
|
54
|
+
"@learncard/helpers": "^1.3.4",
|
|
55
|
+
"@learncard/core": "9.4.22"
|
|
43
56
|
},
|
|
44
57
|
"sideEffects": false,
|
|
45
58
|
"scripts": {
|
|
46
|
-
"build": "node ./scripts/build.mjs && shx cp ./scripts/mixedEntypoint.js ./dist/index.
|
|
59
|
+
"build": "node ./scripts/build.mjs && shx cp ./scripts/mixedEntypoint.js ./dist/index.cjs && tsc --p tsconfig.json && shx cp ./dist/index.d.ts ./dist/index.d.cts",
|
|
47
60
|
"test": "jest --passWithNoTests",
|
|
48
61
|
"test:watch": "jest --watch",
|
|
49
62
|
"test:coverage": "jest --silent --ci --coverage --coverageReporters=\"text\" --coverageReporters=\"text-summary\""
|