@simplybusiness/mobius 8.0.0 → 8.0.2
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/CHANGELOG.md +16 -0
- package/dist/cjs/index.js +4929 -0
- package/dist/cjs/index.js.map +7 -0
- package/dist/cjs/meta.json +5173 -0
- package/package.json +10 -9
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/mobius",
|
|
3
3
|
"license": "UNLICENSED",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.2",
|
|
5
5
|
"description": "Core library of Mobius react components",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"simplyBusiness": {
|
|
11
11
|
"publishToPublicNpm": true
|
|
12
12
|
},
|
|
13
|
-
"main": "dist/
|
|
13
|
+
"main": "dist/cjs/index.js",
|
|
14
14
|
"types": "./dist/types/index.d.ts",
|
|
15
15
|
"files": [
|
|
16
16
|
"src",
|
|
@@ -19,19 +19,20 @@
|
|
|
19
19
|
"exports": {
|
|
20
20
|
".": {
|
|
21
21
|
"types": "./dist/types/index.d.ts",
|
|
22
|
+
"require": "./dist/cjs/index.js",
|
|
22
23
|
"import": "./dist/esm/index.js",
|
|
23
24
|
"default": "./dist/esm/index.js"
|
|
24
25
|
},
|
|
25
26
|
"./src/*.css": "./src/*.css"
|
|
26
27
|
},
|
|
27
28
|
"publishConfig": {
|
|
28
|
-
"
|
|
29
|
-
"main": "dist/esm/index.js",
|
|
29
|
+
"main": "dist/cjs/index.js",
|
|
30
30
|
"module": "dist/esm/index.js",
|
|
31
31
|
"types": "./dist/types/index.d.ts",
|
|
32
32
|
"exports": {
|
|
33
33
|
".": {
|
|
34
34
|
"types": "./dist/types/index.d.ts",
|
|
35
|
+
"require": "./dist/cjs/index.js",
|
|
35
36
|
"import": "./dist/esm/index.js",
|
|
36
37
|
"default": "./dist/esm/index.js"
|
|
37
38
|
},
|
|
@@ -41,8 +42,9 @@
|
|
|
41
42
|
"scripts": {
|
|
42
43
|
"clean": "rm -rf dist",
|
|
43
44
|
"build": "yarn run -T turbo run turbo:build",
|
|
44
|
-
"turbo:build": "yarn build:esm && yarn build:types",
|
|
45
|
+
"turbo:build": "yarn build:esm && yarn build:cjs && yarn build:types",
|
|
45
46
|
"build:esm": "build-package esm",
|
|
47
|
+
"build:cjs": "build-package cjs",
|
|
46
48
|
"build:types": "tsc --emitDeclarationOnly --project tsconfig.build.json",
|
|
47
49
|
"lint": "eslint . --cache",
|
|
48
50
|
"lint:fix": "eslint . --fix",
|
|
@@ -60,8 +62,8 @@
|
|
|
60
62
|
"@eslint/eslintrc": "^3.3.3",
|
|
61
63
|
"@eslint/js": "^9.39.2",
|
|
62
64
|
"@react-types/progress": "^3.5.17",
|
|
63
|
-
"@simplybusiness/build-scripts": "^2.0.
|
|
64
|
-
"@simplybusiness/eslint-config": "^2.0.
|
|
65
|
+
"@simplybusiness/build-scripts": "^2.0.1",
|
|
66
|
+
"@simplybusiness/eslint-config": "^2.0.1",
|
|
65
67
|
"@simplybusiness/eslint-plugin": "^1.2.1",
|
|
66
68
|
"@swc/core": "^1.12.5",
|
|
67
69
|
"@swc/jest": "^0.2.39",
|
|
@@ -96,7 +98,7 @@
|
|
|
96
98
|
},
|
|
97
99
|
"dependencies": {
|
|
98
100
|
"@floating-ui/react": "^0.27.17",
|
|
99
|
-
"@simplybusiness/icons": "^5.0.
|
|
101
|
+
"@simplybusiness/icons": "^5.0.2",
|
|
100
102
|
"classnames": "^2.5.1",
|
|
101
103
|
"dialog-polyfill": "^0.5.6",
|
|
102
104
|
"lodash.debounce": "^4.0.8",
|
|
@@ -107,6 +109,5 @@
|
|
|
107
109
|
"lint-staged": {
|
|
108
110
|
"*.{js,ts,jsx,tsx}": "eslint --fix"
|
|
109
111
|
},
|
|
110
|
-
"type": "module",
|
|
111
112
|
"module": "dist/esm/index.js"
|
|
112
113
|
}
|