Skip to content
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
2 changes: 2 additions & 0 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,7 @@ jobs:
npm run lint
npm run test
npm run build
node packages/oas/bin/index.js
node packages/mcp/bin/index.js
env:
CI: true
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [v0.0.3] - HOTFIX

commit [#]()

### HOTFIX

- Fixed built transpiled code to use .js extension.
- Added check step in build pipeline to prevent issue again.

## [v0.0.2] - 2026-02-19

commit [#]()
Expand Down
1 change: 1 addition & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import spacing from '@stylistic/eslint-plugin';

/** @type {import('eslint').Linter.FlatConfig[]} */
export default [
{ ignores: ['**/bin/**'] },
spacing.configs.recommended,
{
files: ['**/*.{js,ts,mjs}'],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "express-tools",
"version": "0.0.2",
"version": "0.0.3",
"description": "Enhances express APIs",
"private": true,
"workspaces": [
Expand Down
4 changes: 2 additions & 2 deletions packages/mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@express-tools/mcp",
"version": "0.0.2",
"version": "0.0.3",
"description": "MCP plugin for express",
"license": "Apache-2.0",
"main": "bin/index.js",
Expand Down Expand Up @@ -31,7 +31,7 @@
},
"typings": "types.d.ts",
"scripts": {
"build": "rm -rf ./bin && mkdir ./bin && tsc --project ./tsconfig.json",
"build": "rm -rf ./bin && mkdir ./bin && tsc --project ./tsconfig.json && find ./bin -name '*.js' -exec sed -i \"s/\\.ts'/\\.js'/g; s/\\.ts\\\"/\\.js\\\"/g\" {} \\;",
"test:unit": "node --test src/*.test.ts",
"test:integration": "node --test tests/integration/*.test.ts",
"test": "npm run test:unit && npm run test:integration",
Expand Down
4 changes: 2 additions & 2 deletions packages/oas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@express-tools/oas",
"version": "0.0.2",
"version": "0.0.3",
"description": "OpenAPI plugin for express",
"license": "Apache-2.0",
"main": "bin/index.js",
Expand Down Expand Up @@ -31,7 +31,7 @@
},
"typings": "types.d.ts",
"scripts": {
"build": "rm -rf ./bin && mkdir ./bin && tsc --project ./tsconfig.json",
"build": "rm -rf ./bin && mkdir ./bin && tsc --project ./tsconfig.json && find ./bin -name '*.js' -exec sed -i \"s/\\.ts'/\\.js'/g; s/\\.ts\\\"/\\.js\\\"/g\" {} \\;",
"test:unit": "node --test src/*.test.ts",
"test:integration": "node --test tests/integration/*.test.ts",
"test": "npm run test:unit && npm run test:integration",
Expand Down