From 1ac9f117f9b7d8eba18390312403fd62221df3c7 Mon Sep 17 00:00:00 2001 From: Ivanilton Date: Wed, 24 May 2023 15:18:02 -0300 Subject: [PATCH] feat: initial template --- package-lock.json | 4 ++-- package.json | 6 +++--- tsconfig.json | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 99e6c39..38815f1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@shared/components", - "version": "0.0.5", + "version": "0.0.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@shared/components", - "version": "0.0.5", + "version": "0.0.6", "license": "ISC", "devDependencies": { "@rollup/plugin-commonjs": "^25.0.0", diff --git a/package.json b/package.json index 88f3b27..e0c8ded 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,9 @@ { "name": "@niltonxp/react-components-lib", - "version": "0.0.5", + "version": "0.0.6", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", - "types": "dist/index.d.ts", + "types": "dist/types.d.ts", "scripts": { "test": "jest", "build": "rollup -c --bundleConfigAsCjs", @@ -55,4 +55,4 @@ "react": "^18.2.0", "react-dom": "18.2.0" } -} +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index a321629..0162ba7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,7 @@ "jsx": "react", "module": "ESNext", "declaration": true, - "declarationDir": "types", + "declarationDir": "dist", "sourceMap": true, "outDir": "dist", "moduleResolution": "node",