@bikdotai/bik-component-library 0.0.699-beta.7 → 0.0.699-beta.9
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.
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
export * from './html';
|
|
2
2
|
export * from './javascript';
|
|
3
|
+
import * as htmlFormatter from './html';
|
|
4
|
+
import * as javascriptFormatter from './javascript';
|
|
5
|
+
export declare const formatters: {
|
|
6
|
+
readonly html: typeof htmlFormatter;
|
|
7
|
+
readonly javascript: typeof javascriptFormatter;
|
|
8
|
+
};
|
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
export * from './html';
|
|
2
2
|
export * from './javascript';
|
|
3
|
+
import * as htmlFormatter from './html';
|
|
4
|
+
import * as javascriptFormatter from './javascript';
|
|
5
|
+
export declare const formatters: {
|
|
6
|
+
readonly html: typeof htmlFormatter;
|
|
7
|
+
readonly javascript: typeof javascriptFormatter;
|
|
8
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bikdotai/bik-component-library",
|
|
3
|
-
"version": "0.0.699-beta.
|
|
3
|
+
"version": "0.0.699-beta.9",
|
|
4
4
|
"description": "Bik Component Library",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -9,8 +9,7 @@
|
|
|
9
9
|
"sideEffects": false,
|
|
10
10
|
"exports": {
|
|
11
11
|
"import": "./dist/esm/index.js",
|
|
12
|
-
"require": "./dist/cjs/index.js"
|
|
13
|
-
"types": "./dist/esm/index.d.ts"
|
|
12
|
+
"require": "./dist/cjs/index.js"
|
|
14
13
|
},
|
|
15
14
|
"main": "dist/cjs/index.js",
|
|
16
15
|
"module": "dist/esm/index.js",
|