Skip to content
Closed
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
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"prettier": "3.6.2",
"rimraf": "6.0.1",
"semantic-release": "^24.2.4",
"typescript": "~5.8.3",
"typescript": "~5.9.3",
"vitest": "^3.1.4"
},
"lint-staged": {
Expand Down
5 changes: 3 additions & 2 deletions src/commands/RepublishCommand.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { Command } from 'clipanion'
import { ESMDevCommand } from './ESMDevCommand.js'

export class RepublishCommand extends ESMDevCommand {
static override paths = [['republish']]
static paths = [['republish']]

static override usage = this.Usage({
static usage = Command.Usage({
description:
'Removes the references, of given packages, from the ESM server and registry and republishes.',
})
Expand Down
5 changes: 3 additions & 2 deletions src/commands/StartCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ import { ESMDevCommand } from './ESMDevCommand.js'
import { Servable } from './mixins/Servable.js'
import { Watchable } from './mixins/Watchable.js'
import { ESMServed } from './mixins/ESMServed.js'
import { Command } from 'clipanion'

export class StartCommand extends Servable(
Watchable(ESMServed(ESMDevCommand)),
) {
static override paths = [['start']]
static paths = [['start']]

static override usage = this.Usage({
static usage = Command.Usage({
description: 'Runs a server and concurrently watches a file system',
})

Expand Down
4 changes: 2 additions & 2 deletions src/commands/WaitForRegistryCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import { Retryable } from './mixins/Retryable.js'
export class WaitForRegistryCommand extends Retryable(
RegistrySpecific(Command),
) {
static override paths = [['wait-for-registry'], ['wfr']]
static paths = [['wait-for-registry'], ['wfr']]

static override usage = this.Usage({
static usage = Command.Usage({
description: 'wait for the registry to be online',
})

Expand Down
5 changes: 3 additions & 2 deletions src/commands/WatchCommand.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { Command } from 'clipanion'
import { ESMDevCommand } from './ESMDevCommand.js'
import { Watchable } from './mixins/Watchable.js'

export class WatchCommand extends Watchable(ESMDevCommand) {
static override paths = [['watch']]
static paths = [['watch']]

static override usage = this.Usage({
static usage = Command.Usage({
description: 'Watches directories and republishes on changes',
})

Expand Down
Loading