Skip to content

Commit e5568d2

Browse files
authored
update version to 0.0.3 (#32)
1 parent 7f14431 commit e5568d2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Build Size](https://img.shields.io/bundlephobia/minzip/veles?label=bundle%20size)](https://bundlephobia.com/result?p=veles)
55
[![Version](https://img.shields.io/npm/v/veles)](https://www.npmjs.com/package/veles)
66

7-
> The library is in very early stages and is not published yet as some crucial APIs are still under development
7+
> The library is in very early stages and some features, like proper TypeScript support, are not fully implemented yet
88
99
`Veles` is a component-based performance-focused UI library. The main goal of this library is to provide a composable way to build highly interactive interfaces, which should be performant out of the box, as long as you follow the recommendations.
1010

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "veles",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "UI library with main focus on performance",
55
"type": "module",
66
"main": "dist/index.js",

tsup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { defineConfig } from "tsup";
33
export default defineConfig({
44
entry: ["src/index.ts", "src/jsx-runtime.ts"],
55
format: ["esm", "cjs"],
6-
sourcemap: true,
6+
sourcemap: false,
77
clean: true,
88
dts: true,
99
});

0 commit comments

Comments
 (0)