@cencomalls/cencob2b-storybook 1.0.4 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/Banner/Banner.d.ts +2 -0
- package/dist/components/Banner/index.d.ts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +7 -0
- package/package.json +5 -4
- package/src/components/Banner/Banner.tsx +9 -0
- package/src/components/Banner/index.ts +1 -0
- package/src/components/index.tsx +1 -0
- package/src/index.tsx +1 -9
- package/tsconfig.json +3 -1
- /package/{README → README.md} +0 -0
- /package/{build.js → build.mjs} +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
export { default as Banner } from "./Banner";
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./Banner";
|
package/dist/index.d.ts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./components";
|
package/dist/index.js
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
{
|
2
|
+
"version": 3,
|
3
|
+
"sources": ["../src/components/Banner/Banner.tsx"],
|
4
|
+
"sourcesContent": ["const Banner = () => {\n return (\n <div>\n <h1>Banner</h1>\n </div>\n );\n};\n\nexport default Banner;"],
|
5
|
+
"mappings": "AAGY,cAAAA,MAAA,oBAHZ,IAAMC,EAAS,IAEPD,EAAC,OACG,SAAAA,EAAC,MAAG,kBAAM,EACd,EAIDE,EAAQD",
|
6
|
+
"names": ["jsx", "Banner", "Banner_default"]
|
7
|
+
}
|
package/package.json
CHANGED
@@ -1,21 +1,22 @@
|
|
1
1
|
{
|
2
2
|
"name": "@cencomalls/cencob2b-storybook",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.6",
|
4
4
|
"main": "dist/index.cjs.js",
|
5
5
|
"module": "dist/index.esm.js",
|
6
6
|
"types": "dist/index.d.ts",
|
7
|
+
"type": "module",
|
7
8
|
"sideEffects": false,
|
8
9
|
"scripts": {
|
9
|
-
"build": "node build.
|
10
|
+
"build": "node build.mjs && tsc",
|
10
11
|
"storybook": "storybook dev",
|
11
12
|
"build-storybook": "storybook build",
|
12
|
-
"publish": "npm publish --access public"
|
13
|
+
"publish": "npm run build && npm publish --access public"
|
13
14
|
},
|
14
15
|
"keywords": [],
|
15
16
|
"author": "Jonas",
|
16
17
|
"license": "ISC",
|
17
18
|
"description": "",
|
18
|
-
"
|
19
|
+
"peerDependencies": {
|
19
20
|
"react": "^19.0.0",
|
20
21
|
"react-dom": "^19.0.0"
|
21
22
|
},
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as Banner } from "./Banner";
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./Banner";
|
package/src/index.tsx
CHANGED
package/tsconfig.json
CHANGED
/package/{README → README.md}
RENAMED
File without changes
|
/package/{build.js → build.mjs}
RENAMED
File without changes
|