Skip to content

Commit 7d8bcbd

Browse files
authored
Merge pull request #88 from jsr-core/misc
Misc updates
2 parents e4d587c + a6859bb commit 7d8bcbd

File tree

7 files changed

+15
-365
lines changed

7 files changed

+15
-365
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,8 @@ name: Test
22

33
env:
44
DENO_VERSION: 1.x
5-
NODE_VERSION: 16.x
65

76
on:
8-
schedule:
9-
- cron: "0 7 * * 0"
107
push:
118
branches:
129
- main

.github/workflows/update.yml

Lines changed: 0 additions & 50 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/npm
21
/docs
32
deno.lock
43
.coverage

.gitmessage

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,21 @@
11

2-
3-
# Guide (v1.0)
4-
#
5-
# 👍 :+1: Apply changes.
2+
# **Conventional Commits**
63
#
7-
# 🌿 :herb: Add or update things for tests.
8-
# ☕ :coffee: Add or update things for developments.
9-
# 📦 :package: Add or update dependencies.
10-
# 📝 :memo: Add or update documentations.
4+
# <type>[optional scope]: <description>
115
#
12-
# 🐛 :bug: Bugfixes.
13-
# 💋 :kiss: Critical hotfixes.
14-
# 🚿 :shower: Remove features, codes, or files.
6+
# feat: feature (minor)
7+
# deps: dependencies (minor/patch)
8+
# fix: bug fix (patch)
9+
# refactor: refactoring code
10+
# test: test fix; no code change
11+
# docs: documentation fix; no code change
12+
# style: formatting, missing semi colons, etc; no code change
13+
# chore: updating build tasks, package manager configs, etc; no code change
1514
#
16-
# 🚀 :rocket: Improve performance.
17-
# 💪 :muscle: Refactor codes.
18-
# 💥 :boom: Breaking changes.
19-
# 💩 :poop: Bad codes needs to be improved.
15+
# **Install**
2016
#
21-
# How to use:
2217
# git config commit.template .gitmessage
2318
#
24-
# Reference:
25-
# https://github.com/lambdalisue/emojiprefix
19+
# **Reference**
20+
#
21+
# - https://www.conventionalcommits.org/en/v1.0.0/

.scripts/build_npm.ts

Lines changed: 0 additions & 49 deletions
This file was deleted.

deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@
8080
"test:coverage": "deno task test --coverage=.coverage",
8181
"coverage": "deno coverage .coverage",
8282
"update": "deno run --allow-env --allow-read --allow-write=. --allow-run=git,deno --allow-net=jsr.io,registry.npmjs.org jsr:@molt/cli ./*.ts",
83-
"update:commit": "deno task -q update --commit --pre-commit=fmt,lint"
83+
"update:commit": "deno task -q update --commit --prefix deps: --pre-commit=fmt,lint"
8484
}
8585
}

0 commit comments

Comments
 (0)