Skip to content

Commit

Permalink
feat: build with scss
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Apr 24, 2023
1 parent e9f9ff0 commit fd74248
Show file tree
Hide file tree
Showing 16 changed files with 612 additions and 1,043 deletions.
20 changes: 20 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release
on:
push:
tags:
- "v*"

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm ci
- run: npm run build
- name: Create tarball
run: tar czf catppuccin-swaync.tar.gz --directory=./dist .
- name: Add zips to release
uses: softprops/action-gh-release@v1
with:
files: ./catppuccin-swaync.tar.gz
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release
on:
push:
tags:
- "v*"

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm ci
- run: npm run build
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: |
./dist/latte.css
./dist/frappe.css
./dist/macchiato.css
./dist/mocha.css
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
dist/
node_modules/
251 changes: 251 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "swaync",
"version": "0.1.0",
"version": "0.1.1",
"description": "soothing pastel theme for swaync",
"repository": {
"type": "git",
"url": "git+https://github.com/catppuccin/swaync.git"
},
"scripts": {
"build": "sass -I node_modules --no-charset --no-source-map src/palette:src/bin/"
"build": "sass -I node_modules --no-charset --no-source-map src:dist"
},
"author": "Catppuccin Org <[email protected]>",
"license": "MIT",
Expand Down
Loading

0 comments on commit fd74248

Please sign in to comment.