diff --git a/Configuration/ESBuild.ts b/Configuration/ESBuild.ts index c5eadbd..290ae6d 100644 --- a/Configuration/ESBuild.ts +++ b/Configuration/ESBuild.ts @@ -29,9 +29,9 @@ export default { }); }, }, - (await import("@playform/copy")).copy({ - resolveFrom: "out", - assets: [ + (await import("@playform/copy")).default({ + Resolve: "out", + Asset: [ { from: "./Source/Stylesheet/Theme.css", to: "./Stylesheet/", diff --git a/Source/Interface/Build.ts b/Source/Interface/Build.ts index 01dce34..84d2f05 100644 --- a/Source/Interface/Build.ts +++ b/Source/Interface/Build.ts @@ -2,7 +2,7 @@ * @module Build * */ -export default interface Type { +export default interface Interface { /** * Represents a function that processes file patterns. * diff --git a/Source/Interface/Exec.ts b/Source/Interface/Exec.ts index ff2ec1b..24b86d3 100644 --- a/Source/Interface/Exec.ts +++ b/Source/Interface/Exec.ts @@ -2,7 +2,7 @@ * @module Exec * */ -export default interface Type { +export default interface Interface { /** * The 'Exec' function is an asynchronous function that executes a command and logs the * stdout and stderr of the child process. diff --git a/Source/Interface/JSON.ts b/Source/Interface/JSON.ts index 9447d0c..3b5f8df 100644 --- a/Source/Interface/JSON.ts +++ b/Source/Interface/JSON.ts @@ -2,7 +2,7 @@ * @module JSON * */ -export default interface Type { +export default interface Interface { /** * The function 'JSON' is a TypeScript function that reads a JSON file and returns its * parsed content. diff --git a/Source/Interface/Load.ts b/Source/Interface/Load.ts index fda2db9..d3ecf68 100644 --- a/Source/Interface/Load.ts +++ b/Source/Interface/Load.ts @@ -2,7 +2,7 @@ * @module Load * */ -export default interface Type { +export default interface Interface { /** * The `Load` function is responsible for loading a plugin into the TypeDoc instance. * diff --git a/Source/Interface/Mapping.ts b/Source/Interface/Mapping.ts index abaeca6..a330ac4 100644 --- a/Source/Interface/Mapping.ts +++ b/Source/Interface/Mapping.ts @@ -6,7 +6,7 @@ * Used by DefaultTheme to map reflections to output files. * */ -export default interface Type { +export default interface Interface { /** * DeclarationReflection.kind this rule applies to. */ diff --git a/package.json b/package.json index 7644ccd..90286c9 100644 --- a/package.json +++ b/package.json @@ -46,9 +46,11 @@ }, "devDependencies": { "@playform/build": "0.0.2", - "@playform/copy": "2.1.1", "ts-node": "10.9.2" }, + "peerDependencies": { + "@playform/copy": "0.0.1" + }, "publishConfig": { "access": "public" }