Skip to content

Commit d8cd246

Browse files
authored
fix: correct exports (tsdown changes) (#756)
1 parent bfb1408 commit d8cd246

File tree

16 files changed

+1742
-342
lines changed

16 files changed

+1742
-342
lines changed

.c8rc.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/ci.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,4 @@ jobs:
3737
with:
3838
node-version: ${{ matrix.node-version }}
3939
- run: npm ci
40-
- run: npm run test:cov
41-
env:
42-
CI: true
43-
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
40+
- run: npm test

.github/workflows/release.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,7 @@ jobs:
3737
with:
3838
node-version: ${{ matrix.node-version }}
3939
- run: npm ci
40-
- run: npm run test:cov
41-
env:
42-
CI: true
43-
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
40+
- run: npm test
4441
release:
4542
name: Release
4643
runs-on: ubuntu-latest

.nycrc.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "@istanbuljs/nyc-config-typescript",
3+
"exclude": ["test/**"],
4+
"reporter": ["lcov", "text", "html"],
5+
"skip-full": true,
6+
"all": true
7+
}

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.2.2/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.6/schema.json",
33
"vcs": {
44
"enabled": false,
55
"clientKind": "git",

exports.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import safeImport from './safeImport';
1+
import { safeImport } from './safeImport';
22
import { Arcane, ArchonShard, Conclave, Events, SolNode, SortieData, SteelPath, SynthesisTarget } from './types';
33

44
export type Locale = 'de' | 'en' | 'es' | 'fr' | 'it' | 'ko' | 'pl' | 'pt' | 'ru' | 'zh' | 'cs' | 'sr' | 'uk';

0 commit comments

Comments
 (0)