Skip to content

Commit

Permalink
Updated readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
greatsquare0 committed Oct 16, 2024
1 parent 797626b commit 7ec61c3
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release
name: Manual Release

on: workflow_dispatch

Expand Down
28 changes: 21 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# Tweenode

A neat NPM package and wrapper for [Tweego](https://github.com/tmedwards/tweego), downloads binaries from Tweego repo and expose a JS API
<!-- <div align='center'>
<img align='center' height='128px' alt='Logo' src=''>
</div> -->

<h1 align='center'>Tweenode</h1>

<p align='center'>
A neat NPM package and wrapper for Tweego, downloads binaries from Tweego repo and expose a JS API
</p>

<div align='center'>
<img alt="Version Badge" src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fraw.githubusercontent.com%2Fgreatsquare0%2Ftweenode%2Frefs%2Fheads%2Fmain%2Fpackage.json&query=%24.version&label=Version">
<img alt="CI Workflow Status" src="https://img.shields.io/github/actions/workflow/status/greatsquare0/tweenode/ci.yml?style=flat&label=Testing">
<img alt="Build Workflow Status" src="https://img.shields.io/github/actions/workflow/status/greatsquare0/tweenode/release.yml?style=flat&label=Release">
</div>

---

> Now on beta!
Expand All @@ -9,7 +24,7 @@ Aimed to be used with build scripts for more complex stories
## Basic usage

```js
import {Tweenode, setupTweego} from 'tweenode'
import { Tweenode, setupTweego } from 'tweenode'

await setupTweego()

Expand All @@ -24,7 +39,6 @@ await tweego.process({
fileName: 'path/to/output.html',
},
})

```

## Development
Expand All @@ -38,16 +52,16 @@ await tweego.process({
# install dependencies
pnpm install

# test the app
# test the library with Vitest
pnpm run test

# build the app, available under dist
# build the library, available under dist/
pnpm run build
```
---
### Special thanks to these projects (And the people behind them):


[Tweego by tmedwards](https://github.com/tmedwards/tweego)
[sugarcube-starter by nijikokun](https://github.com/nijikokun/sugarcube-starter/) (Main source of inspiration)
[tweego-bin by double-a-stories](https://github.com/double-a-stories/tweego-bin)
[tweego-node by mattrossman](https://github.com/mattrossman/tweego-node)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tweenode",
"version": "0.1.3",
"version": "0.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
Expand Down

0 comments on commit 7ec61c3

Please sign in to comment.