Skip to content
This repository was archived by the owner on Dec 18, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: linz/action-typescript@9bf69b0f313b3525d3ba3116f26b1aff7eb7a6c0 # v3
- uses: linz/action-typescript@47be81e60ed1d891c696c3fb7f558876ba9a2b57 # v3.2.0
with:
node-version: 20.x
node-version: 24.x
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
if: ${{ needs.release-please.outputs.release_created }}
steps:
- name: Build and test
uses: linz/action-typescript@9bf69b0f313b3525d3ba3116f26b1aff7eb7a6c0 # v3
uses: linz/action-typescript@47be81e60ed1d891c696c3fb7f558876ba9a2b57 # v3.2.0
with:
registry-url: 'https://npm.pkg.github.com'
node-version: 20.x
registry-url: "https://npm.pkg.github.com"
node-version: 24.x
- name: Publish to Github
run: npm publish
env:
Expand Down
54 changes: 34 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"devDependencies": {
"@linzjs/style": "^5.4.0",
"@types/node": "^22.8.2"
"@types/node": "^24.10.4"
},
"scripts": {
"build": "tsc",
Expand All @@ -28,7 +28,7 @@
},
"type": "module",
"engines": {
"node": "^20.13.1"
"node": "^24.12.0"
},
"files": [
"build/src/**"
Expand Down
2 changes: 1 addition & 1 deletion src/__test__/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import assert from 'node:assert';
import { describe, it } from 'node:test';

import { helloWorld } from '../index.js';
import { helloWorld } from '../index.ts';

void describe('helloWorld', () => {
void it('should respond with hello world', () => {
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"extends": "@linzjs/style/tsconfig.base.json",
"compilerOptions": {
"outDir": "build"
"outDir": "build",
"noEmit": true,
"allowImportingTsExtensions": true
}
}