c063 1.4.0 → 1.4.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/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './types';
2
2
  export * from './components';
3
- export * from './utils';
4
- export * from './libs';
3
+ import c063, { whiteSpace } from './utils';
4
+ export default c063;
5
+ export { whiteSpace };
package/dist/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './types';
2
2
  export * from './components';
3
- export * from './utils';
4
- export * from './libs';
3
+ import c063, { whiteSpace } from './utils';
4
+ export default c063;
5
+ export { whiteSpace };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "c063",
4
- "version": "1.4.0",
4
+ "version": "1.4.1",
5
5
  "description": "A React component for displaying code snippets with syntax highlighting.",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -16,25 +16,17 @@
16
16
  "Code.js",
17
17
  "Fanyu",
18
18
  "Syntax Highlighting",
19
- "Code Snippet",
20
19
  "Code Display",
21
- "Code Viewer",
22
20
  "Code Block",
23
21
  "Code Highlighting",
24
- "Code Formatter",
25
- "Code Viewer Component",
26
22
  "Code Syntax",
27
23
  "Code Snippet Viewer",
28
24
  "Code Snippet Highlighter",
29
25
  "Code Snippet Formatter",
30
26
  "Code Snippet Display",
31
- "Code Snippet Viewer Component",
32
27
  "Code Snippet Highlighter Component",
33
- "Code Snippet Formatter Component",
34
28
  "Code Snippet Display Component",
35
- "Code Snippet Viewer React",
36
29
  "Code Snippet Highlighter React",
37
- "Code Snippet Formatter React",
38
30
  "Code Snippet Display React"
39
31
  ],
40
32
  "repository": {
package/src/index.ts CHANGED
@@ -1,4 +1,8 @@
1
1
  export * from './types';
2
2
  export * from './components';
3
- export * from './utils';
4
- export * from './libs';
3
+
4
+ import c063, { whiteSpace }from './utils';
5
+ export default c063;
6
+ export {
7
+ whiteSpace
8
+ }