Skip to content

Commit

Permalink
chore: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillgroshkov committed Sep 4, 2023
1 parent 15f5c7c commit 8d65206
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/default.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: default
name: ci

on: [push, workflow_dispatch]

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"url": "https://github.com/NaturalCycles/time-lib"
},
"engines": {
"node": ">=16.15.0"
"node": ">=18.12.0"
},
"version": "3.3.0",
"description": "Date/time related API, based on Day.js",
Expand Down
2 changes: 1 addition & 1 deletion scripts/bench1.script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ yarn tsn bench1

import { runBench } from '@naturalcycles/bench-lib'
import { _range } from '@naturalcycles/js-lib'
import { runScript } from '@naturalcycles/nodejs-lib/dist/script'
import { runScript } from '@naturalcycles/nodejs-lib'
import { dayjs } from '../src/index'

const date = '1984-06-21'
Expand Down
2 changes: 1 addition & 1 deletion scripts/numberToISODate.bench.script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ yarn tsn numberToISODate.bench

import { runBench } from '@naturalcycles/bench-lib'
import { _range } from '@naturalcycles/js-lib'
import { runScript } from '@naturalcycles/nodejs-lib/dist/script'
import { runScript } from '@naturalcycles/nodejs-lib'
import { dayjs } from '../src/index'

const date = '1984-06-21'
Expand Down
2 changes: 1 addition & 1 deletion scripts/parse.bench.script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ yarn tsn parse.bench

import { runBench } from '@naturalcycles/bench-lib'
import { _range } from '@naturalcycles/js-lib'
import { runScript } from '@naturalcycles/nodejs-lib/dist/script'
import { runScript } from '@naturalcycles/nodejs-lib'
import { dayjs } from '../src/index'

const date = '1984-06-21'
Expand Down
2 changes: 2 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"extends": "@naturalcycles/dev-lib/cfg/tsconfig.json",
"compilerOptions": {
"sourceMap": true,
"module": "commonjs",
"moduleResolution": "node",
"outDir": "dist",
"target": "es2017"
},
Expand Down

0 comments on commit 8d65206

Please sign in to comment.