Skip to content

Commit 39f5c56

Browse files
committed
Revision 0.11.2 (#13)
* Rest Combinator * Version * License
1 parent b399f82 commit 39f5c56

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+701
-88
lines changed

.github/workflows/publish.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Publish
2+
3+
on:
4+
push:
5+
tags:
6+
- '[0-9]+.[0-9]+.[0-9]+*' # Semver-Tag
7+
8+
permissions:
9+
id-token: write # Required for OIDC
10+
contents: read
11+
12+
jobs:
13+
Publish:
14+
runs-on: ubuntu-latest
15+
steps:
16+
17+
# Checkout
18+
- uses: actions/checkout@v4
19+
20+
# Node
21+
- uses: actions/setup-node@v4
22+
with:
23+
node-version: '20'
24+
registry-url: 'https://registry.npmjs.org'
25+
26+
# Deno
27+
- uses: denoland/setup-deno@v2
28+
with:
29+
deno-version: v2.5
30+
31+
# Update
32+
- name: Update
33+
run: npm install npm -g
34+
35+
# Build
36+
- name: Build
37+
run: deno task build
38+
39+
# Publish
40+
- name: Publish
41+
run: npm publish sinclair-parsebox-*.tgz --provenance --access public
42+
working-directory: target/build

example/binary/binary.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ParseBox
44
55
The MIT License (MIT)
66
7-
Copyright (c) 2024-2025 Haydn Paterson
7+
Copyright (c) 2024-2026 Haydn Paterson
88
99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal

example/ebnf/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ParseBox
44
55
The MIT License (MIT)
66
7-
Copyright (c) 2024-2025 Haydn Paterson
7+
Copyright (c) 2024-2026 Haydn Paterson
88
99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal

example/ebnf/parse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ParseBox
44
55
The MIT License (MIT)
66
7-
Copyright (c) 2024-2025 Haydn Paterson
7+
Copyright (c) 2024-2026 Haydn Paterson
88
99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal

example/ebnf/runtime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ParseBox
44
55
The MIT License (MIT)
66
7-
Copyright (c) 2024-2025 Haydn Paterson
7+
Copyright (c) 2024-2026 Haydn Paterson
88
99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal

example/ebnf/static.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ParseBox
44
55
The MIT License (MIT)
66
7-
Copyright (c) 2024-2025 Haydn Paterson
7+
Copyright (c) 2024-2026 Haydn Paterson
88
99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal

example/json/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ParseBox
44
55
The MIT License (MIT)
66
7-
Copyright (c) 2024-2025 Haydn Paterson
7+
Copyright (c) 2024-2026 Haydn Paterson
88
99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal

example/json/parse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ParseBox
44
55
The MIT License (MIT)
66
7-
Copyright (c) 2024-2025 Haydn Paterson
7+
Copyright (c) 2024-2026 Haydn Paterson
88
99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal

example/json/runtime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ParseBox
44
55
The MIT License (MIT)
66
7-
Copyright (c) 2024-2025 Haydn Paterson
7+
Copyright (c) 2024-2026 Haydn Paterson
88
99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal

example/json/static.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ParseBox
44
55
The MIT License (MIT)
66
7-
Copyright (c) 2024-2025 Haydn Paterson
7+
Copyright (c) 2024-2026 Haydn Paterson
88
99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)