Skip to content

Commit 4847b7d

Browse files
authored
Merge pull request #262 from Hexagon/dev
9.0 stable
2 parents 5840c20 + 7bfefc4 commit 4847b7d

Some content is hidden

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

79 files changed

+4519
-12719
lines changed

.gitattributes

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
dist/* linguist-generated
2-
dist-docs/* linguist-documentation
31
src/helpers/minitz.ts linguist-vendored

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ A clear and concise description of what you expected to happen.
2626
**System:**
2727
- OS: [e.g. iOS, Linux, Windows]
2828
- Runtime [Node.js, Deno, Bun, Chrome, Safari, Firefox]
29-
- Version [e.g. 22]
29+
- Runtime Version [e.g. 22]
30+
- Croner Version [e.g. 9.0.0-dev.11]
3031

3132
**Additional context**
3233
Add any other context about the problem here.

.github/dependabot.yml

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

.github/workflows/bun.yaml

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

.github/workflows/deno.yaml

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

.github/workflows/node.js.yml

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

.github/workflows/npm-prerelease.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,19 @@ jobs:
99
- uses: actions/checkout@v3
1010
with:
1111
ref: dev
12+
13+
- name: Setup Deno
14+
uses: denoland/setup-deno@v2
15+
with:
16+
deno-version: "2.x"
17+
1218
- uses: actions/[email protected]
1319
with:
1420
node-version: '16.x'
1521
registry-url: 'https://registry.npmjs.org'
16-
- run: npm install
22+
23+
- run: deno task build
24+
1725
- run: npm publish --tag dev
1826
env:
1927
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/npm.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,19 @@ jobs:
99
- uses: actions/checkout@v3
1010
with:
1111
ref: master
12+
13+
- name: Setup Deno
14+
uses: denoland/setup-deno@v2
15+
with:
16+
deno-version: "2.x"
17+
1218
- uses: actions/[email protected]
1319
with:
14-
node-version: '16.x'
20+
node-version: '18.x'
1521
registry-url: 'https://registry.npmjs.org'
16-
- run: npm install
22+
23+
- run: deno task build
24+
1725
- run: npm publish
1826
env:
1927
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Cross Runtime Tests
2+
3+
on:
4+
push:
5+
branches: [main, dev, dev-9.0]
6+
pull_request:
7+
branches: [main, dev, dev-9.0]
8+
9+
jobs:
10+
deno_ci:
11+
uses: cross-org/workflows/.github/workflows/deno-ci.yml@main
12+
with:
13+
entrypoint: src/croner.ts
14+
lint_docs: false
15+
bun_ci:
16+
uses: cross-org/workflows/.github/workflows/bun-ci.yml@main
17+
with:
18+
jsr_dependencies: "@cross/test @std/assert"
19+
node_ci:
20+
uses: cross-org/workflows/.github/workflows/node-ci.yml@main
21+
with:
22+
test_target: "test/*.test.ts"
23+
jsr_dependencies: "@cross/test @std/assert"

.gitignore

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,12 @@ dist-docs
4545
_site
4646

4747
# TypeScript incremental compilation information
48-
.tsbuildinfo
48+
.tsbuildinfo
49+
50+
# Built NPM package
51+
dist
52+
package.json
53+
package-lock.json
54+
55+
# TypeScript configuration is added on-demand
56+
tsconfig.json

0 commit comments

Comments
 (0)