@gjuchault/typescript-library-starter
Advanced tools
Comparing version 4.0.3 to 4.0.4
@@ -38,11 +38,3 @@ { | ||
"import/consistent-type-specifier-style": ["error", "prefer-top-level"] | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["*.test.ts"], | ||
"rules": { | ||
"@typescript-eslint/no-floating-promises": "off" | ||
} | ||
} | ||
] | ||
} | ||
} |
@@ -1,2 +0,2 @@ | ||
## [4.0.3](https://github.com/gjuchault/typescript-library-starter/compare/v4.0.2...v4.0.3) (2023-11-21) | ||
## [4.0.4](https://github.com/gjuchault/typescript-library-starter/compare/v4.0.3...v4.0.4) (2023-11-21) | ||
@@ -6,2 +6,2 @@ | ||
* **tests:** ignore no-floating-promises on tests ([061c242](https://github.com/gjuchault/typescript-library-starter/commit/061c242fa1c2f8f4de9d8867518a30f551b61a21)) | ||
* **packages:** remove unused source-map-support ([30bb889](https://github.com/gjuchault/typescript-library-starter/commit/30bb88907f8df526a3ef2b3f859bdb909118eb6d)) |
{ | ||
"name": "@gjuchault/typescript-library-starter", | ||
"version": "4.0.3", | ||
"version": "4.0.4", | ||
"description": "Yet another typescript library starter template", | ||
@@ -20,8 +20,8 @@ "keywords": [ | ||
"engines": { | ||
"node": "^21.1.0", | ||
"npm": "^10.2.0" | ||
"node": "^21.2.0", | ||
"npm": "^10.2.3" | ||
}, | ||
"volta": { | ||
"node": "21.1.0", | ||
"npm": "10.2.0" | ||
"node": "21.2.0", | ||
"npm": "10.2.3" | ||
}, | ||
@@ -77,3 +77,2 @@ "publishConfig": { | ||
"slugify": "^1.6.6", | ||
"source-map-support": "^0.5.21", | ||
"tsx": "^4.1.4", | ||
@@ -80,0 +79,0 @@ "typescript": "^5.2.2" |
@@ -9,2 +9,4 @@ # TypeScript Library Starter | ||
If you're looking for a backend service starter, check out my [typescript-service-starter](https://github.com/gjuchault/typescript-service-starter) | ||
## Opinions and limitations | ||
@@ -26,4 +28,4 @@ | ||
1. Set up the `NPM_TOKEN` secret in GitHub Actions ([Settings > Secrets > Actions](https://github.com/gjuchault/typescript-service-starter/settings/secrets/actions)) | ||
2. Give `GITHUB_TOKEN` write permissions for GitHub releases ([Settings > Actions > General](https://github.com/gjuchault/typescript-service-starter/settings/actions) > Workflow permissions) | ||
1. Set up the `NPM_TOKEN` secret in GitHub Actions ([Settings > Secrets > Actions](https://github.com/gjuchault/typescript-library-starter/settings/secrets/actions)) | ||
2. Give `GITHUB_TOKEN` write permissions for GitHub releases ([Settings > Actions > General](https://github.com/gjuchault/typescript-library-starter/settings/actions) > Workflow permissions) | ||
@@ -30,0 +32,0 @@ ## Features |
@@ -6,9 +6,9 @@ import * as assert from "node:assert/strict"; | ||
describe("foobar()", () => { | ||
describe("given two positive integers", () => { | ||
await describe("foobar()", async () => { | ||
await describe("given two positive integers", async () => { | ||
const first = 1; | ||
const second = 2; | ||
describe("when called", () => { | ||
it("returns the sum of them multiplied by 3", () => { | ||
await describe("when called", async () => { | ||
await it("returns the sum of them multiplied by 3", () => { | ||
assert.equal(foobar(first, second), 9); | ||
@@ -15,0 +15,0 @@ }); |
Sorry, the diff of this file is not supported yet
33077
28
82
531