@wp-typia/project-tools 0.19.1 → 0.19.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/runtime/built-in-block-non-ts-artifacts.js +1 -1039
- package/dist/runtime/built-in-block-non-ts-family-artifacts.d.ts +30 -0
- package/dist/runtime/built-in-block-non-ts-family-artifacts.js +1035 -0
- package/dist/runtime/built-in-block-non-ts-render-utils.d.ts +27 -0
- package/dist/runtime/built-in-block-non-ts-render-utils.js +51 -0
- package/dist/runtime/cli-add-workspace-rest-anchors.d.ts +3 -0
- package/dist/runtime/cli-add-workspace-rest-anchors.js +188 -0
- package/dist/runtime/cli-add-workspace-rest-source-emitters.d.ts +7 -0
- package/dist/runtime/cli-add-workspace-rest-source-emitters.js +379 -0
- package/dist/runtime/cli-add-workspace-rest.js +5 -564
- package/package.json +1 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { BuiltInCodeArtifact } from "./built-in-block-code-artifacts.js";
|
|
2
|
+
import type { ScaffoldTemplateVariables } from "./scaffold.js";
|
|
3
|
+
/**
|
|
4
|
+
* Builds the basic family non-TypeScript scaffold artifacts.
|
|
5
|
+
*
|
|
6
|
+
* @param variables Scaffold template variables used to render the artifact set.
|
|
7
|
+
* @returns The SCSS and PHP artifacts owned by the basic template family.
|
|
8
|
+
*/
|
|
9
|
+
export declare function buildBasicArtifacts(variables: ScaffoldTemplateVariables): BuiltInCodeArtifact[];
|
|
10
|
+
/**
|
|
11
|
+
* Builds the interactivity family non-TypeScript scaffold artifacts.
|
|
12
|
+
*
|
|
13
|
+
* @param variables Scaffold template variables used to render the artifact set.
|
|
14
|
+
* @returns The SCSS artifacts owned by the interactivity template family.
|
|
15
|
+
*/
|
|
16
|
+
export declare function buildInteractivityArtifacts(variables: ScaffoldTemplateVariables): BuiltInCodeArtifact[];
|
|
17
|
+
/**
|
|
18
|
+
* Builds the persistence family non-TypeScript scaffold artifacts.
|
|
19
|
+
*
|
|
20
|
+
* @param variables Scaffold template variables used to render the artifact set.
|
|
21
|
+
* @returns The persistence SCSS and PHP artifacts for the selected render targets.
|
|
22
|
+
*/
|
|
23
|
+
export declare function buildPersistenceArtifacts(variables: ScaffoldTemplateVariables): BuiltInCodeArtifact[];
|
|
24
|
+
/**
|
|
25
|
+
* Builds the compound family non-TypeScript scaffold artifacts.
|
|
26
|
+
*
|
|
27
|
+
* @param variables Scaffold template variables used to render the artifact set.
|
|
28
|
+
* @returns The compound SCSS and PHP artifacts, including persistence variants when enabled.
|
|
29
|
+
*/
|
|
30
|
+
export declare function buildCompoundArtifacts(variables: ScaffoldTemplateVariables): BuiltInCodeArtifact[];
|