Skip to content
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
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: '23.x'

- name: Install dependencies
run: npm install

- name: Build Tailwind CSS
run: make tailwind
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
src/style.css
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
input-css := ./src/input.css
output-css := ./src/style.css
tailwind-command := npx tailwindcss -i $(input-css) -o $(output-css)

.PHONY: tailwind serve

tailwind:
$(tailwind-command)

tailwind-watch:
$(tailwind-command) --watch

serve:
npx watch-http-server ./src
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Tanjun
# TanjunSoftware.com

Currently just a placeholder.
29 changes: 0 additions & 29 deletions index.html

This file was deleted.

Loading
Loading