From b556ef792f3113a244d4ce5b4ebeddc6db9c11e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnaud=20Barr=C3=A9?= Date: Sun, 28 Aug 2022 02:19:10 +0200 Subject: [PATCH] Initial release --- .github/workflows/publish.yml | 17 +++++++++++++++++ CHANGELOG.md | 5 +++++ README.md | 2 +- 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/publish.yml create mode 100644 CHANGELOG.md diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..3942c19 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,17 @@ +name: Publish to npm +on: + push: + branches: + - main +jobs: + publish: + runs-on: ubuntu-latest + if: ${{ contains(github.event.head_commit.message, '[publish]') }} + steps: + - uses: actions/checkout@v2 + - uses: xhyrom/setup-bun@v0.1.7 + - run: bun install + - run: bun ci + - uses: ArnaudBarre/npm-publish@v1 + with: + npm-token: ${{ secrets.NPM_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..29e891a --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog + +## 0.1.0 + +Initial release diff --git a/README.md b/README.md index 0226a11..b74832f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# downwind +# downwind [![npm](https://img.shields.io/npm/v/@arnaud-barre/downwind)](https://www.npmjs.com/package/@arnaud-barre/downwind) A PostCSS-less implementation of Tailwind based on [@parcel/css](https://github.com/parcel-bundler/parcel-css) with an API optimized for dev server like [Vite](https://github.com/vitejs/vite).