@mmb-digital/design-system-web 0.1.5 → 0.1.6
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/jest.config.d.ts +7 -0
- package/package.json +1 -2
- package/rollup.config.js +1 -3
- package/tsconfig.json +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmb-digital/design-system-web",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "MMB design-system-web",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -79,7 +79,6 @@
|
|
|
79
79
|
"rollup-plugin-dts": "6.1.0",
|
|
80
80
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
81
81
|
"rollup-plugin-terser": "7.0.2",
|
|
82
|
-
"rollup-plugin-typescript2": "0.36.0",
|
|
83
82
|
"storybook": "7.6.12",
|
|
84
83
|
"styled-components": "6.1.8",
|
|
85
84
|
"stylelint": "15.11.0",
|
package/rollup.config.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import resolve from '@rollup/plugin-node-resolve';
|
|
2
2
|
import commonjs from '@rollup/plugin-commonjs';
|
|
3
3
|
import typescript from '@rollup/plugin-typescript';
|
|
4
|
-
// import
|
|
5
|
-
import dts from 'rollup-plugin-dts';
|
|
4
|
+
// import dts from 'rollup-plugin-dts';
|
|
6
5
|
import { terser } from 'rollup-plugin-terser';
|
|
7
6
|
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
|
|
8
7
|
|
|
@@ -32,7 +31,6 @@ export default [
|
|
|
32
31
|
],
|
|
33
32
|
external: ['react', 'react-dom', 'styled-components'],
|
|
34
33
|
},
|
|
35
|
-
|
|
36
34
|
// {
|
|
37
35
|
// input: 'src/index.ts',
|
|
38
36
|
// output: [{ file: 'dist/types.d.ts', format: 'es' }],
|
package/tsconfig.json
CHANGED
|
@@ -9,8 +9,7 @@
|
|
|
9
9
|
"declaration": true,
|
|
10
10
|
"declarationDir": "dist",
|
|
11
11
|
"sourceMap": true,
|
|
12
|
-
|
|
13
|
-
"moduleResolution": "bundler",
|
|
12
|
+
"moduleResolution": "node",
|
|
14
13
|
"emitDeclarationOnly": true,
|
|
15
14
|
"allowSyntheticDefaultImports": true,
|
|
16
15
|
"forceConsistentCasingInFileNames": true,
|