Skip to content

Commit

Permalink
Remove more mocha references. Fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
evert committed Jul 10, 2024
1 parent 7740aa7 commit 3e5f4ee
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 21 deletions.
3 changes: 1 addition & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
"env": {
"browser": true,
"node": true,
"es6": true,
"mocha": true
"es6": true
},
"extends": [
"eslint:recommended",
Expand Down
5 changes: 3 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
Changelog
=========

0.25.5 (????-??-??)
0.26.0 (????-??-??)
-------------------

* Upgraded to Curveball 1
* Upgraded to Curveball 1.
* Moved from CommonJS to ESM.
* Upgraded to Typescript 5.5.
* Dropped mocha for the built-in Node tester.


0.25.4 (2024-02-26)
Expand Down
16 changes: 0 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,22 +106,6 @@
"engines": {
"node": ">= 18"
},
"mocha": {
"loader": [
"ts-node/esm"
],
"recursive": true,
"extension": [
"ts",
"js",
"tsx"
]
},
"nyc": {
"extension": [
".ts"
]
},
"bin": "./bin/a12n-server",
"types": "dist/"
}
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { fileURLToPath } from 'node:url';

const pkg = JSON.parse(
readFileSync(dirname(fileURLToPath(import.meta.url)) + '/../package.json', 'utf-8')
).version;
);

export const VERSION = pkg.version;
export const NAME = pkg.name;

0 comments on commit 3e5f4ee

Please sign in to comment.