Skip to content

Commit

Permalink
Corrected version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikchiru12 committed Nov 17, 2024
1 parent c9d06c3 commit c7cf194
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<img alt="license" src="https://img.shields.io/badge/license-MIT-blue">
</a>
<a href="https://github.com/yakshavingdevs/datadance/blob/main/LICENSE">
<img alt="version" src="https://img.shields.io/badge/version-1.0.2-blue">
<img alt="version" src="https://img.shields.io/badge/version-1.0.1-blue">
</a><br><br>
</div>

Expand All @@ -24,18 +24,18 @@
Install DataDance from npm:

```bash
npm install @yakshavingdevs/datadance
npm install datadance
```

Then you can import it in your code :
```js
import { transform } from "@yakshavingdevs/datadance";
import { transform } from "datadance";
```

or

```js
const datadance = require("@yakshavingdevs/datadance");
const datadance = require("datadance");
const transform = datadance.transform;
```

Expand Down
4 changes: 2 additions & 2 deletions build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ await build({
},
test: false,
package: {
name: "@yakshavingdevs/datadance",
version: "1.0.2",
name: "datadance",
version: "1.0.1",
description: "DataDance is a versatile data processing package that makes handling JSON transformations straightforward and efficient. Our package accepts JSON input and allows you to define transformations using a code-like format. Provide your data and transformation rules, and DataDance will process them to deliver the desired output.",
license: "MIT",
type: "module",
Expand Down
6 changes: 3 additions & 3 deletions server/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ export default function Home() {
</div>
<div class="card mx-auto" >
<div class="card-body">
<h5 class="card-title mb-3">Install Datadance v1.0.2</h5>
<h5 class="card-title mb-3">Install Datadance v1.0.1</h5>
<pre class="bg-dark p-3 rounded">
<code>npm install @yakshavingdevs/datadance</code>
<code>npm install datadance</code>
</pre>
</div>
</div>
Expand All @@ -126,7 +126,7 @@ export default function Home() {
<h5 class="card-title mb-3">Usage</h5>
<pre class="bg-dark p-3 rounded">
<code>
{`import { transform } from "@yakshavingdevs/datadance";
{`import { transform } from "datadance";
async function process() {
var res = await transform({
input: { x: 2 },
Expand Down

0 comments on commit c7cf194

Please sign in to comment.