Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge: dev to master #13

Merged
merged 5 commits into from
Mar 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,25 @@ on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}

runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['10.x', '12.x', '14.x']
node: ['16.x', '17.x', '18.x', '19.x', '20.x']
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
node-version: '16.x || 17.x || 18.x || 19.x || 20.x'

- name: Install Yarn
run: npm install -g yarn

- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Lint
run: yarn lint
Expand Down
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,19 @@ The main feature of this library is to enable developers to use it across variou

## Commands

<div align="center">
<h4>Install the library using the commands yarn add visual-pack or npm install visual-pack and go full throttle on interface development! 👾💥🚀 </h4>
</div>
<h4> Install the library with one of the commands below and start destroying the interface development! 👾💥🚀 </h4>

```bash
yarn add visual-pack
```

<p align="center">or</p>

```bash
npm install visual-pack
```

### TSDX

TSDX scaffolds your new library inside `/src`, and also sets up a [Parcel-based](https://parceljs.org) playground for it inside `/example`.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"src"
],
"engines": {
"node": ">=10"
"node": ">=16"
},
"scripts": {
"start": "tsdx watch",
Expand Down
Loading