@cosmotech/core 1.19.1 → 2.0.1
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/.github/workflows/eslint.yml +3 -3
- package/.github/workflows/track_dependencies.yml +30 -0
- package/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +27 -0
- package/dist/index.cjs.js +17722 -16451
- package/dist/index.esm.js +17722 -16451
- package/package.json +26 -26
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmotech/core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"build": "node
|
|
8
|
+
"build": "node ./node_modules/.bin/rollup -c",
|
|
9
9
|
"eslint": "eslint",
|
|
10
10
|
"test": "jest --watchAll=false",
|
|
11
11
|
"prettier": "npx prettier -w"
|
|
@@ -24,42 +24,42 @@
|
|
|
24
24
|
"fs": false
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@babel/core": "^7.
|
|
28
|
-
"@babel/preset-env": "^7.
|
|
29
|
-
"@eslint/eslintrc": "^3.1
|
|
30
|
-
"@eslint/js": "^9.
|
|
27
|
+
"@babel/core": "^7.28.4",
|
|
28
|
+
"@babel/preset-env": "^7.28.3",
|
|
29
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
30
|
+
"@eslint/js": "^9.35.0",
|
|
31
31
|
"@rollup/plugin-babel": "^6.0.4",
|
|
32
|
-
"@rollup/plugin-commonjs": "^28.0.
|
|
32
|
+
"@rollup/plugin-commonjs": "^28.0.6",
|
|
33
33
|
"@rollup/plugin-image": "^3.0.3",
|
|
34
|
-
"@rollup/plugin-node-resolve": "^
|
|
35
|
-
"@trivago/prettier-plugin-sort-imports": "^
|
|
36
|
-
"eslint": "^9.
|
|
37
|
-
"eslint-config-prettier": "^
|
|
38
|
-
"eslint-plugin-import": "^2.
|
|
39
|
-
"eslint-plugin-jest": "^
|
|
40
|
-
"eslint-plugin-n": "^17.
|
|
34
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
35
|
+
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
36
|
+
"eslint": "^9.35.0",
|
|
37
|
+
"eslint-config-prettier": "^10.1.8",
|
|
38
|
+
"eslint-plugin-import": "^2.32.0",
|
|
39
|
+
"eslint-plugin-jest": "^29.0.1",
|
|
40
|
+
"eslint-plugin-n": "^17.23.1",
|
|
41
41
|
"eslint-plugin-node": "^11.1.0",
|
|
42
|
-
"eslint-plugin-prettier": "^5.
|
|
43
|
-
"eslint-plugin-promise": "^7.1
|
|
44
|
-
"globals": "^
|
|
45
|
-
"jest": "^
|
|
46
|
-
"neostandard": "^0.
|
|
47
|
-
"postcss": "^8.
|
|
48
|
-
"prettier": "^3.
|
|
49
|
-
"rollup": "^4.
|
|
42
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
43
|
+
"eslint-plugin-promise": "^7.2.1",
|
|
44
|
+
"globals": "^16.4.0",
|
|
45
|
+
"jest": "^30.1.3",
|
|
46
|
+
"neostandard": "^0.12.2",
|
|
47
|
+
"postcss": "^8.5.6",
|
|
48
|
+
"prettier": "^3.6.2",
|
|
49
|
+
"rollup": "^4.51.0",
|
|
50
50
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
51
51
|
"rollup-plugin-postcss": "^4.0.2",
|
|
52
|
-
"rollup-plugin-visualizer": "^
|
|
52
|
+
"rollup-plugin-visualizer": "^6.0.3",
|
|
53
53
|
"timezone-mock": "^1.3.6"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@azure/msal-browser": "^
|
|
56
|
+
"@azure/msal-browser": "^4.23.0",
|
|
57
57
|
"csv-string": "^4.1.1",
|
|
58
58
|
"date-fns": "^4.1.0",
|
|
59
59
|
"js-file-download": "^0.4.12",
|
|
60
60
|
"rfdc": "^1.4.1",
|
|
61
|
-
"validator": "^13.
|
|
61
|
+
"validator": "^13.15.15",
|
|
62
62
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
|
|
63
63
|
},
|
|
64
|
-
"packageManager": "yarn@4.
|
|
64
|
+
"packageManager": "yarn@4.9.4"
|
|
65
65
|
}
|