Skip to content

Commit 6694171

Browse files
committed
Initial Release
1 parent 239aaf9 commit 6694171

File tree

6 files changed

+43
-17
lines changed

6 files changed

+43
-17
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Run Linter
22

33
on:
44
push:
5-
branches: ["main"]
5+
branches:
6+
- "main"
67

78
workflow_dispatch:
89

@@ -19,7 +20,7 @@ jobs:
1920

2021
steps:
2122
- name: Setup Repository (${{github.event.repository.name}})
22-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2324

2425
- name: Setup Deno (${{env.deno-version}})
2526
uses: denoland/setup-deno@v1

.github/workflows/publish.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Publish
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
12+
permissions:
13+
contents: read
14+
id-token: write
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Publish package
20+
run: npx jsr publish

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Run Unit Tests
22

33
on:
44
push:
5-
branches: ["main"]
5+
branches:
6+
- "main"
67

78
workflow_dispatch:
89

@@ -19,7 +20,7 @@ jobs:
1920

2021
steps:
2122
- name: Setup Repository (${{github.event.repository.name}})
22-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2324

2425
- name: Setup Deno (${{env.deno-version}})
2526
uses: denoland/setup-deno@v1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# Template
2-
Template for TypeScript.
1+
# Binary Reader
2+
A binary reader package to read binary data.

deno.jsonc

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
{
2-
"tasks": {
3-
"index": "deno run --check -A ./src/index.ts"
4-
},
5-
"exclude": [
6-
"**/*.test.ts"
7-
],
8-
"test": {
9-
"include": [
10-
"**/*.test.ts"
11-
]
12-
}
2+
"name": "@typescriptplayground/binary-reader",
3+
"version": "0.1.0",
4+
"license": "./LICENSE",
5+
"exports": "./src/index.ts",
6+
"tasks": {
7+
"index": "deno run --check -A ./src/index.ts"
8+
},
9+
"exclude": [
10+
"**/*.test.ts"
11+
],
12+
"test": {
13+
"include": [
14+
"**/*.test.ts"
15+
]
16+
}
1317
}

docs/DOCS.md

Whitespace-only changes.

0 commit comments

Comments
 (0)