ninegrid2 6.1295.0 → 6.1296.0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/rollup.config.js +4 -18
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1295.0",
4
+ "version": "6.1296.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
package/rollup.config.js CHANGED
@@ -23,11 +23,7 @@ export default {
23
23
  ],
24
24
  external: [],
25
25
  plugins: [
26
- // 1. JSON 처리
27
26
  json(),
28
-
29
- // 2. SVG 처리 (CKEditor의 핵심 에러 해결 포인트)
30
- // 2. SVG를 순수 문자열로 처리 (stringify: true가 핵심)
31
27
  string({
32
28
  include: [
33
29
  '**/*.svg',
@@ -35,22 +31,12 @@ export default {
35
31
  ]
36
32
  }),
37
33
  url({
38
- exclude: ['**/*.svg'],
34
+ exclude: [/.*\.svg$/],
39
35
  include: ['**/*.png', '**/*.jpg', '**/*.gif'],
40
36
  limit: 8192,
41
37
  }),
42
- postcss({
43
- extract: false,
44
- minimize: true,
45
- use: ['sass'],
46
- }),
47
- resolve({
48
- browser: true,
49
- mainFields: ['module', 'main']
50
- }),
51
- commonjs({
52
- exclude: ['**/*.svg'],
53
- include: /node_modules/
54
- }),
38
+ postcss({ extract: false, minimize: true, use: ['sass'] }),
39
+ resolve({ browser: true, mainFields: ['module', 'main'] }),
40
+ commonjs({ exclude: [/.*\.svg$/], include: /node_modules/ })
55
41
  ]
56
42
  };