Skip to content

Commit

Permalink
Merge pull request #26 from jacob-shuman/next
Browse files Browse the repository at this point in the history
feat: complete rewrite
  • Loading branch information
jacob-shuman authored Sep 20, 2024
2 parents b061388 + f796716 commit 04cb5a2
Show file tree
Hide file tree
Showing 61 changed files with 3,660 additions and 14,457 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: publish

on:
workflow_dispatch:
push:
branches: [main]

jobs:
npm:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v4

- name: Install pnpm 🏗
uses: pnpm/action-setup@v4
with:
version: 9
run_install: false

- name: Setup node 🏗
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"

- name: Install dependencies 📦
run: pnpm install

- name: Build package 🔧
run: pnpm build

- name: Publish to npm 📤
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}

jsr:
runs-on: ubuntu-latest

permissions:
contents: read
id-token: write

steps:
- name: Checkout 🛎
uses: actions/checkout@v4

- name: Publish to JSR 📤
run: npx jsr publish
63 changes: 2 additions & 61 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,61 +1,2 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# next.js build output
.next
dist/
node_modules/
5 changes: 0 additions & 5 deletions .npmignore

This file was deleted.

1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 jacob-shuman
Copyright (c) 2018-2024 Jacob Shuman

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading

0 comments on commit 04cb5a2

Please sign in to comment.