Fast and tiny JavaScript/TypeScript cron parser with timezone support
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix deno runtime tests

+7 -4
+5 -2
.github/workflows/ci.yml
··· 42 42 run: pnpm run test 43 43 44 44 - name: Build 45 + if: matrix.node >= 20 45 46 run: pnpm run build 46 47 47 48 # Test with Deno ··· 56 57 with: 57 58 deno-version: v2.x 58 59 60 + - name: Install dependencies 61 + run: deno install 62 + 59 63 - name: Run tests with Deno 60 - run: | 61 - deno test --allow-read --allow-env test/*.test.ts 64 + run: deno run -A npm:vitest run 62 65 63 66 # Test with Bun 64 67 test-bun:
+1 -1
jsr.json
··· 1 1 { 2 2 "name": "@kbilkis/cron-fast", 3 - "version": "0.1.0", 3 + "version": "0.1.1", 4 4 "description": "Fast JavaScript/TypeScript cron parser with timezone support - works in Node.js, Deno, Bun, Cloudflare Workers, and browsers. Zero dependencies.", 5 5 "exports": "./src/index.ts", 6 6 "publish": {
+1 -1
package.json
··· 1 1 { 2 2 "name": "cron-fast", 3 - "version": "0.1.0", 3 + "version": "0.1.1", 4 4 "description": "Fast JavaScript/TypeScript cron parser with timezone support - works in Node.js, Deno, Bun, Cloudflare Workers, and browsers. Zero dependencies.", 5 5 "keywords": [ 6 6 "browser",