Skip to content

Commit 14c2d79

Browse files
committed
fix: migrate @NordicSemiconductor packages
1 parent a9bf472 commit 14c2d79

File tree

12 files changed

+30
-39
lines changed

12 files changed

+30
-39
lines changed

package-lock.json

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@
8484
"prettier": "@bifravst/prettier-config",
8585
"peerDependencies": {
8686
"@aws-sdk/client-dynamodb": "^3.614.0",
87+
"@bifravst/bdd-markdown": "^8.2.3",
8788
"@bifravst/http-api-mock": "^2.0.42",
88-
"@nordicsemiconductor/bdd-markdown": "^8.2.3",
8989
"@sinclair/typebox": "^0.32.34",
9090
"jsonata": "^2.0.5",
9191
"p-retry": "^6.2.0",

renovate.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@
33
"extends": ["github>bifravst/renovate-config"],
44
"packageRules": [
55
{
6-
"matchPackagePatterns": [
7-
"@sinclair/typebox",
8-
"@nordicsemiconductor/bdd-markdown"
9-
],
6+
"matchPackagePatterns": ["@sinclair/typebox", "@bifravst/bdd-markdown"],
107
"groupName": "typebox"
118
},
129
{

src/REST.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, it, afterEach } from 'node:test'
22
import assert from 'node:assert/strict'
3-
import { runFolder } from '@nordicsemiconductor/bdd-markdown'
3+
import { runFolder } from '@bifravst/bdd-markdown'
44
import path from 'node:path'
55
import { fileURLToPath } from 'node:url'
66
import { steps } from './REST.js'

src/REST.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
codeBlockOrThrow,
33
regExpMatchedStep,
44
type StepRunner,
5-
} from '@nordicsemiconductor/bdd-markdown'
5+
} from '@bifravst/bdd-markdown'
66
import { Type } from '@sinclair/typebox'
77
import jsonata from 'jsonata'
88
import { check, objectMatching } from 'tsmatchers'

src/httpApiMock.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
codeBlockOrThrow,
44
regExpMatchedStep,
55
type StepRunner,
6-
} from '@nordicsemiconductor/bdd-markdown'
6+
} from '@bifravst/bdd-markdown'
77
import { Type } from '@sinclair/typebox'
88
import { parseMockResponse } from '@bifravst/http-api-mock/parseMockResponse'
99
import { registerResponse } from '@bifravst/http-api-mock/responses'

src/lib/doRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type Logger } from '@nordicsemiconductor/bdd-markdown'
1+
import { type Logger } from '@bifravst/bdd-markdown'
22
import pRetry from 'p-retry'
33

44
type Result = {

src/lib/logObserver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { LogObserver } from '@nordicsemiconductor/bdd-markdown'
1+
import type { LogObserver } from '@bifravst/bdd-markdown'
22

33
const print = (arg: unknown) =>
44
typeof arg === 'object' ? JSON.stringify(arg) : arg

src/random.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, it } from 'node:test'
22
import assert from 'node:assert/strict'
3-
import { runFolder } from '@nordicsemiconductor/bdd-markdown'
3+
import { runFolder } from '@bifravst/bdd-markdown'
44
import path from 'node:path'
55
import { fileURLToPath } from 'node:url'
66
import { steps, UUIDv4, email, IMEI } from './random.js'

src/random.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
import {
2-
regExpMatchedStep,
3-
type StepRunner,
4-
} from '@nordicsemiconductor/bdd-markdown'
1+
import { regExpMatchedStep, type StepRunner } from '@bifravst/bdd-markdown'
52
import { Type } from '@sinclair/typebox'
63
import { randomBytes } from 'crypto'
74

0 commit comments

Comments
 (0)