@vertesia/build-tools 0.80.0
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/LICENSE +13 -0
- package/README.md +334 -0
- package/lib/build-tools.js +616 -0
- package/lib/build-tools.js.map +1 -0
- package/lib/cjs/index.js +34 -0
- package/lib/cjs/index.js.map +1 -0
- package/lib/cjs/package.json +3 -0
- package/lib/cjs/parsers/frontmatter.js +25 -0
- package/lib/cjs/parsers/frontmatter.js.map +1 -0
- package/lib/cjs/plugin.js +142 -0
- package/lib/cjs/plugin.js.map +1 -0
- package/lib/cjs/presets/index.js +12 -0
- package/lib/cjs/presets/index.js.map +1 -0
- package/lib/cjs/presets/raw.js +25 -0
- package/lib/cjs/presets/raw.js.map +1 -0
- package/lib/cjs/presets/skill.js +224 -0
- package/lib/cjs/presets/skill.js.map +1 -0
- package/lib/cjs/types.js +6 -0
- package/lib/cjs/types.js.map +1 -0
- package/lib/cjs/utils/asset-copy.js +61 -0
- package/lib/cjs/utils/asset-copy.js.map +1 -0
- package/lib/cjs/utils/asset-discovery.js +100 -0
- package/lib/cjs/utils/asset-discovery.js.map +1 -0
- package/lib/cjs/utils/widget-compiler.js +115 -0
- package/lib/cjs/utils/widget-compiler.js.map +1 -0
- package/lib/esm/index.js +26 -0
- package/lib/esm/index.js.map +1 -0
- package/lib/esm/parsers/frontmatter.js +19 -0
- package/lib/esm/parsers/frontmatter.js.map +1 -0
- package/lib/esm/plugin.js +136 -0
- package/lib/esm/plugin.js.map +1 -0
- package/lib/esm/presets/index.js +6 -0
- package/lib/esm/presets/index.js.map +1 -0
- package/lib/esm/presets/raw.js +22 -0
- package/lib/esm/presets/raw.js.map +1 -0
- package/lib/esm/presets/skill.js +221 -0
- package/lib/esm/presets/skill.js.map +1 -0
- package/lib/esm/types.js +5 -0
- package/lib/esm/types.js.map +1 -0
- package/lib/esm/utils/asset-copy.js +54 -0
- package/lib/esm/utils/asset-copy.js.map +1 -0
- package/lib/esm/utils/asset-discovery.js +94 -0
- package/lib/esm/utils/asset-discovery.js.map +1 -0
- package/lib/esm/utils/widget-compiler.js +76 -0
- package/lib/esm/utils/widget-compiler.js.map +1 -0
- package/lib/types/index.d.ts +24 -0
- package/lib/types/index.d.ts.map +1 -0
- package/lib/types/parsers/frontmatter.d.ts +19 -0
- package/lib/types/parsers/frontmatter.d.ts.map +1 -0
- package/lib/types/plugin.d.ts +10 -0
- package/lib/types/plugin.d.ts.map +1 -0
- package/lib/types/presets/index.d.ts +6 -0
- package/lib/types/presets/index.d.ts.map +1 -0
- package/lib/types/presets/raw.d.ts +16 -0
- package/lib/types/presets/raw.d.ts.map +1 -0
- package/lib/types/presets/skill.d.ts +139 -0
- package/lib/types/presets/skill.d.ts.map +1 -0
- package/lib/types/types.d.ts +113 -0
- package/lib/types/types.d.ts.map +1 -0
- package/lib/types/utils/asset-copy.d.ts +20 -0
- package/lib/types/utils/asset-copy.d.ts.map +1 -0
- package/lib/types/utils/asset-discovery.d.ts +38 -0
- package/lib/types/utils/asset-discovery.d.ts.map +1 -0
- package/lib/types/utils/widget-compiler.d.ts +15 -0
- package/lib/types/utils/widget-compiler.d.ts.map +1 -0
- package/package.json +67 -0
- package/src/index.ts +45 -0
- package/src/parsers/frontmatter.ts +32 -0
- package/src/plugin.ts +158 -0
- package/src/presets/index.ts +6 -0
- package/src/presets/raw.ts +24 -0
- package/src/presets/skill.ts +271 -0
- package/src/types.ts +137 -0
- package/src/utils/asset-copy.ts +63 -0
- package/src/utils/asset-discovery.ts +138 -0
- package/src/utils/widget-compiler.ts +98 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Utilities for copying asset files during build
|
|
4
|
+
*/
|
|
5
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
7
|
+
};
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.copyAssetFile = copyAssetFile;
|
|
10
|
+
exports.copyAssets = copyAssets;
|
|
11
|
+
const node_fs_1 = require("node:fs");
|
|
12
|
+
const node_path_1 = __importDefault(require("node:path"));
|
|
13
|
+
/**
|
|
14
|
+
* Ensure a directory exists, creating it recursively if needed
|
|
15
|
+
*/
|
|
16
|
+
function ensureDirectory(dirPath) {
|
|
17
|
+
try {
|
|
18
|
+
(0, node_fs_1.mkdirSync)(dirPath, { recursive: true });
|
|
19
|
+
}
|
|
20
|
+
catch (error) {
|
|
21
|
+
// Ignore if directory already exists
|
|
22
|
+
if (error.code !== 'EEXIST') {
|
|
23
|
+
throw error;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Copy an asset file to its destination
|
|
29
|
+
*
|
|
30
|
+
* @param asset - Asset file information
|
|
31
|
+
* @param assetsRoot - Root directory for assets
|
|
32
|
+
*/
|
|
33
|
+
function copyAssetFile(asset, assetsRoot) {
|
|
34
|
+
const destPath = node_path_1.default.join(assetsRoot, asset.destPath);
|
|
35
|
+
const destDir = node_path_1.default.dirname(destPath);
|
|
36
|
+
// Ensure destination directory exists
|
|
37
|
+
ensureDirectory(destDir);
|
|
38
|
+
// Copy file
|
|
39
|
+
try {
|
|
40
|
+
(0, node_fs_1.copyFileSync)(asset.sourcePath, destPath);
|
|
41
|
+
}
|
|
42
|
+
catch (error) {
|
|
43
|
+
throw new Error(`Failed to copy asset from ${asset.sourcePath} to ${destPath}: ${error instanceof Error ? error.message : String(error)}`);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Copy multiple asset files
|
|
48
|
+
*
|
|
49
|
+
* @param assets - Array of asset files to copy
|
|
50
|
+
* @param assetsRoot - Root directory for assets
|
|
51
|
+
* @returns Number of files copied
|
|
52
|
+
*/
|
|
53
|
+
function copyAssets(assets, assetsRoot) {
|
|
54
|
+
let copied = 0;
|
|
55
|
+
for (const asset of assets) {
|
|
56
|
+
copyAssetFile(asset, assetsRoot);
|
|
57
|
+
copied++;
|
|
58
|
+
}
|
|
59
|
+
return copied;
|
|
60
|
+
}
|
|
61
|
+
//# sourceMappingURL=asset-copy.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"asset-copy.js","sourceRoot":"","sources":["../../../src/utils/asset-copy.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;AA0BH,sCAgBC;AASD,gCASC;AA1DD,qCAAkD;AAClD,0DAA6B;AAG7B;;GAEG;AACH,SAAS,eAAe,CAAC,OAAe;IACpC,IAAI,CAAC;QACD,IAAA,mBAAS,EAAC,OAAO,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAC5C,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACb,qCAAqC;QACrC,IAAK,KAA+B,CAAC,IAAI,KAAK,QAAQ,EAAE,CAAC;YACrD,MAAM,KAAK,CAAC;QAChB,CAAC;IACL,CAAC;AACL,CAAC;AAED;;;;;GAKG;AACH,SAAgB,aAAa,CAAC,KAAgB,EAAE,UAAkB;IAC9D,MAAM,QAAQ,GAAG,mBAAI,CAAC,IAAI,CAAC,UAAU,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;IACvD,MAAM,OAAO,GAAG,mBAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;IAEvC,sCAAsC;IACtC,eAAe,CAAC,OAAO,CAAC,CAAC;IAEzB,YAAY;IACZ,IAAI,CAAC;QACD,IAAA,sBAAY,EAAC,KAAK,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;IAC7C,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACb,MAAM,IAAI,KAAK,CACX,6BAA6B,KAAK,CAAC,UAAU,OAAO,QAAQ,KAAK,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CACtH,EAAE,CACL,CAAC;IACN,CAAC;AACL,CAAC;AAED;;;;;;GAMG;AACH,SAAgB,UAAU,CAAC,MAAmB,EAAE,UAAkB;IAC9D,IAAI,MAAM,GAAG,CAAC,CAAC;IAEf,KAAK,MAAM,KAAK,IAAI,MAAM,EAAE,CAAC;QACzB,aAAa,CAAC,KAAK,EAAE,UAAU,CAAC,CAAC;QACjC,MAAM,EAAE,CAAC;IACb,CAAC;IAED,OAAO,MAAM,CAAC;AAClB,CAAC"}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Utilities for discovering asset files (scripts, widgets) in skill directories
|
|
4
|
+
*/
|
|
5
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
7
|
+
};
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.discoverSkillAssets = discoverSkillAssets;
|
|
10
|
+
const node_fs_1 = require("node:fs");
|
|
11
|
+
const node_path_1 = __importDefault(require("node:path"));
|
|
12
|
+
/**
|
|
13
|
+
* Check if a file exists and is a regular file
|
|
14
|
+
*/
|
|
15
|
+
function isFile(filePath) {
|
|
16
|
+
try {
|
|
17
|
+
return (0, node_fs_1.statSync)(filePath).isFile();
|
|
18
|
+
}
|
|
19
|
+
catch {
|
|
20
|
+
return false;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Get all files in a directory (non-recursive)
|
|
25
|
+
*/
|
|
26
|
+
function getFilesInDirectory(dirPath) {
|
|
27
|
+
try {
|
|
28
|
+
return (0, node_fs_1.readdirSync)(dirPath).filter(file => {
|
|
29
|
+
const fullPath = node_path_1.default.join(dirPath, file);
|
|
30
|
+
return isFile(fullPath);
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
catch {
|
|
34
|
+
return [];
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if a file is a script file (.js or .py)
|
|
39
|
+
*/
|
|
40
|
+
function isScriptFile(fileName) {
|
|
41
|
+
return /\.(js|py)$/.test(fileName);
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Check if a file is a widget file (.tsx)
|
|
45
|
+
*/
|
|
46
|
+
function isWidgetFile(fileName) {
|
|
47
|
+
return /\.tsx$/.test(fileName);
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Extract widget name from .tsx file (remove extension)
|
|
51
|
+
*/
|
|
52
|
+
function getWidgetName(fileName) {
|
|
53
|
+
return fileName.replace(/\.tsx$/, '');
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Discover assets (scripts and widgets) in a skill directory
|
|
57
|
+
*
|
|
58
|
+
* @param skillFilePath - Absolute path to the skill.md file
|
|
59
|
+
* @param options - Asset discovery options
|
|
60
|
+
* @returns Discovered assets and metadata
|
|
61
|
+
*/
|
|
62
|
+
function discoverSkillAssets(skillFilePath, options = {}) {
|
|
63
|
+
const skillDir = node_path_1.default.dirname(skillFilePath);
|
|
64
|
+
const files = getFilesInDirectory(skillDir);
|
|
65
|
+
const scripts = [];
|
|
66
|
+
const widgets = [];
|
|
67
|
+
const widgetMetadata = [];
|
|
68
|
+
const assetFiles = [];
|
|
69
|
+
const scriptsDir = options.scriptsDir || 'scripts';
|
|
70
|
+
for (const file of files) {
|
|
71
|
+
const fullPath = node_path_1.default.join(skillDir, file);
|
|
72
|
+
if (isScriptFile(file)) {
|
|
73
|
+
// Script file (.js or .py)
|
|
74
|
+
scripts.push(file);
|
|
75
|
+
assetFiles.push({
|
|
76
|
+
sourcePath: fullPath,
|
|
77
|
+
destPath: node_path_1.default.join(scriptsDir, file),
|
|
78
|
+
type: 'script'
|
|
79
|
+
});
|
|
80
|
+
}
|
|
81
|
+
else if (isWidgetFile(file)) {
|
|
82
|
+
// Widget file (.tsx)
|
|
83
|
+
const widgetName = getWidgetName(file);
|
|
84
|
+
widgets.push(widgetName);
|
|
85
|
+
widgetMetadata.push({
|
|
86
|
+
name: widgetName,
|
|
87
|
+
path: fullPath
|
|
88
|
+
});
|
|
89
|
+
// Note: We don't add widget .tsx files to assetFiles
|
|
90
|
+
// Widgets are compiled by the plugin if widgetConfig is provided
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
return {
|
|
94
|
+
scripts,
|
|
95
|
+
widgets,
|
|
96
|
+
widgetMetadata,
|
|
97
|
+
assetFiles
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
//# sourceMappingURL=asset-discovery.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"asset-discovery.js","sourceRoot":"","sources":["../../../src/utils/asset-discovery.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;AAuFH,kDAgDC;AArID,qCAAgD;AAChD,0DAA6B;AA+B7B;;GAEG;AACH,SAAS,MAAM,CAAC,QAAgB;IAC5B,IAAI,CAAC;QACD,OAAO,IAAA,kBAAQ,EAAC,QAAQ,CAAC,CAAC,MAAM,EAAE,CAAC;IACvC,CAAC;IAAC,MAAM,CAAC;QACL,OAAO,KAAK,CAAC;IACjB,CAAC;AACL,CAAC;AAED;;GAEG;AACH,SAAS,mBAAmB,CAAC,OAAe;IACxC,IAAI,CAAC;QACD,OAAO,IAAA,qBAAW,EAAC,OAAO,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE;YACtC,MAAM,QAAQ,GAAG,mBAAI,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;YAC1C,OAAO,MAAM,CAAC,QAAQ,CAAC,CAAC;QAC5B,CAAC,CAAC,CAAC;IACP,CAAC;IAAC,MAAM,CAAC;QACL,OAAO,EAAE,CAAC;IACd,CAAC;AACL,CAAC;AAED;;GAEG;AACH,SAAS,YAAY,CAAC,QAAgB;IAClC,OAAO,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;AACvC,CAAC;AAED;;GAEG;AACH,SAAS,YAAY,CAAC,QAAgB;IAClC,OAAO,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;AACnC,CAAC;AAED;;GAEG;AACH,SAAS,aAAa,CAAC,QAAgB;IACnC,OAAO,QAAQ,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;AAC1C,CAAC;AAED;;;;;;GAMG;AACH,SAAgB,mBAAmB,CAC/B,aAAqB,EACrB,UAGI,EAAE;IAEN,MAAM,QAAQ,GAAG,mBAAI,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC;IAC7C,MAAM,KAAK,GAAG,mBAAmB,CAAC,QAAQ,CAAC,CAAC;IAE5C,MAAM,OAAO,GAAa,EAAE,CAAC;IAC7B,MAAM,OAAO,GAAa,EAAE,CAAC;IAC7B,MAAM,cAAc,GAAqB,EAAE,CAAC;IAC5C,MAAM,UAAU,GAAgB,EAAE,CAAC;IAEnC,MAAM,UAAU,GAAG,OAAO,CAAC,UAAU,IAAI,SAAS,CAAC;IAEnD,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;QACvB,MAAM,QAAQ,GAAG,mBAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;QAE3C,IAAI,YAAY,CAAC,IAAI,CAAC,EAAE,CAAC;YACrB,2BAA2B;YAC3B,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACnB,UAAU,CAAC,IAAI,CAAC;gBACZ,UAAU,EAAE,QAAQ;gBACpB,QAAQ,EAAE,mBAAI,CAAC,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC;gBACrC,IAAI,EAAE,QAAQ;aACjB,CAAC,CAAC;QACP,CAAC;aAAM,IAAI,YAAY,CAAC,IAAI,CAAC,EAAE,CAAC;YAC5B,qBAAqB;YACrB,MAAM,UAAU,GAAG,aAAa,CAAC,IAAI,CAAC,CAAC;YACvC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;YACzB,cAAc,CAAC,IAAI,CAAC;gBAChB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;aACjB,CAAC,CAAC;YAEH,qDAAqD;YACrD,iEAAiE;QACrE,CAAC;IACL,CAAC;IAED,OAAO;QACH,OAAO;QACP,OAAO;QACP,cAAc;QACd,UAAU;KACb,CAAC;AACN,CAAC"}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Widget compilation utility using Rollup
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
39
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
40
|
+
};
|
|
41
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42
|
+
exports.compileWidgets = compileWidgets;
|
|
43
|
+
const rollup_1 = require("rollup");
|
|
44
|
+
const node_path_1 = __importDefault(require("node:path"));
|
|
45
|
+
/**
|
|
46
|
+
* Default external dependencies for widgets
|
|
47
|
+
*/
|
|
48
|
+
const DEFAULT_EXTERNALS = [
|
|
49
|
+
'react',
|
|
50
|
+
'react-dom',
|
|
51
|
+
'react/jsx-runtime',
|
|
52
|
+
'react/jsx-dev-runtime',
|
|
53
|
+
'react-dom/client'
|
|
54
|
+
];
|
|
55
|
+
/**
|
|
56
|
+
* Compile widgets using Rollup
|
|
57
|
+
*
|
|
58
|
+
* @param widgets - Array of widget metadata to compile
|
|
59
|
+
* @param outputDir - Directory to write compiled widgets
|
|
60
|
+
* @param config - Widget compilation configuration
|
|
61
|
+
* @returns Number of widgets compiled
|
|
62
|
+
*/
|
|
63
|
+
async function compileWidgets(widgets, outputDir, config = {}) {
|
|
64
|
+
if (widgets.length === 0) {
|
|
65
|
+
return 0;
|
|
66
|
+
}
|
|
67
|
+
const { external = DEFAULT_EXTERNALS, tsconfig = './tsconfig.json', typescript: typescriptOptions = {}, minify = false } = config;
|
|
68
|
+
// Build each widget separately to get individual bundles
|
|
69
|
+
const buildPromises = widgets.map(async (widget) => {
|
|
70
|
+
// Dynamically import plugins - use any to bypass TypeScript module resolution issues
|
|
71
|
+
const typescript = (await Promise.resolve(`${'@rollup/plugin-typescript'}`).then(s => __importStar(require(s)))).default;
|
|
72
|
+
const nodeResolve = (await Promise.resolve(`${'@rollup/plugin-node-resolve'}`).then(s => __importStar(require(s)))).default;
|
|
73
|
+
const commonjs = (await Promise.resolve(`${'@rollup/plugin-commonjs'}`).then(s => __importStar(require(s)))).default;
|
|
74
|
+
const plugins = [
|
|
75
|
+
typescript({
|
|
76
|
+
tsconfig,
|
|
77
|
+
declaration: false,
|
|
78
|
+
sourceMap: true,
|
|
79
|
+
...typescriptOptions
|
|
80
|
+
}),
|
|
81
|
+
nodeResolve({
|
|
82
|
+
browser: true,
|
|
83
|
+
preferBuiltins: false,
|
|
84
|
+
extensions: ['.tsx', '.ts', '.jsx', '.js']
|
|
85
|
+
}),
|
|
86
|
+
commonjs()
|
|
87
|
+
];
|
|
88
|
+
// Add minification if requested
|
|
89
|
+
if (minify) {
|
|
90
|
+
const { terser } = await Promise.resolve(`${'rollup-plugin-terser'}`).then(s => __importStar(require(s)));
|
|
91
|
+
plugins.push(terser({
|
|
92
|
+
compress: {
|
|
93
|
+
drop_console: false
|
|
94
|
+
}
|
|
95
|
+
}));
|
|
96
|
+
}
|
|
97
|
+
const rollupConfig = {
|
|
98
|
+
input: widget.path,
|
|
99
|
+
output: {
|
|
100
|
+
file: node_path_1.default.join(outputDir, `${widget.name}.js`),
|
|
101
|
+
format: 'es',
|
|
102
|
+
sourcemap: true,
|
|
103
|
+
inlineDynamicImports: true
|
|
104
|
+
},
|
|
105
|
+
external,
|
|
106
|
+
plugins
|
|
107
|
+
};
|
|
108
|
+
const bundle = await (0, rollup_1.rollup)(rollupConfig);
|
|
109
|
+
await bundle.write(rollupConfig.output);
|
|
110
|
+
await bundle.close();
|
|
111
|
+
});
|
|
112
|
+
await Promise.all(buildPromises);
|
|
113
|
+
return widgets.length;
|
|
114
|
+
}
|
|
115
|
+
//# sourceMappingURL=widget-compiler.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-compiler.js","sourceRoot":"","sources":["../../../src/utils/widget-compiler.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0BH,wCAqEC;AA7FD,mCAAiE;AACjE,0DAA6B;AAI7B;;GAEG;AACH,MAAM,iBAAiB,GAAG;IACtB,OAAO;IACP,WAAW;IACX,mBAAmB;IACnB,uBAAuB;IACvB,kBAAkB;CACrB,CAAC;AAEF;;;;;;;GAOG;AACI,KAAK,UAAU,cAAc,CAChC,OAAyB,EACzB,SAAiB,EACjB,SAAuB,EAAE;IAEzB,IAAI,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACvB,OAAO,CAAC,CAAC;IACb,CAAC;IAED,MAAM,EACF,QAAQ,GAAG,iBAAiB,EAC5B,QAAQ,GAAG,iBAAiB,EAC5B,UAAU,EAAE,iBAAiB,GAAG,EAAE,EAClC,MAAM,GAAG,KAAK,EACjB,GAAG,MAAM,CAAC;IAEX,yDAAyD;IACzD,MAAM,aAAa,GAAG,OAAO,CAAC,GAAG,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE;QAC/C,qFAAqF;QACrF,MAAM,UAAU,GAAG,CAAC,yBAAa,2BAAkC,uCAAC,CAAC,CAAC,OAAc,CAAC;QACrF,MAAM,WAAW,GAAG,CAAC,yBAAa,6BAAoC,uCAAC,CAAC,CAAC,OAAc,CAAC;QACxF,MAAM,QAAQ,GAAG,CAAC,yBAAa,yBAAgC,uCAAC,CAAC,CAAC,OAAc,CAAC;QAEjF,MAAM,OAAO,GAAa;YACtB,UAAU,CAAC;gBACP,QAAQ;gBACR,WAAW,EAAE,KAAK;gBAClB,SAAS,EAAE,IAAI;gBACf,GAAG,iBAAiB;aACvB,CAAC;YACF,WAAW,CAAC;gBACR,OAAO,EAAE,IAAI;gBACb,cAAc,EAAE,KAAK;gBACrB,UAAU,EAAE,CAAC,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC;aAC7C,CAAC;YACF,QAAQ,EAAE;SACb,CAAC;QAEF,gCAAgC;QAChC,IAAI,MAAM,EAAE,CAAC;YACT,MAAM,EAAE,MAAM,EAAE,GAAG,yBAAa,sBAA6B,uCAAC,CAAC;YAC/D,OAAO,CAAC,IAAI,CACR,MAAM,CAAC;gBACH,QAAQ,EAAE;oBACN,YAAY,EAAE,KAAK;iBACtB;aACJ,CAAC,CACL,CAAC;QACN,CAAC;QAED,MAAM,YAAY,GAAkB;YAChC,KAAK,EAAE,MAAM,CAAC,IAAI;YAClB,MAAM,EAAE;gBACJ,IAAI,EAAE,mBAAI,CAAC,IAAI,CAAC,SAAS,EAAE,GAAG,MAAM,CAAC,IAAI,KAAK,CAAC;gBAC/C,MAAM,EAAE,IAAI;gBACZ,SAAS,EAAE,IAAI;gBACf,oBAAoB,EAAE,IAAI;aAC7B;YACD,QAAQ;YACR,OAAO;SACV,CAAC;QAEF,MAAM,MAAM,GAAG,MAAM,IAAA,eAAM,EAAC,YAAY,CAAC,CAAC;QAC1C,MAAM,MAAM,CAAC,KAAK,CAAC,YAAY,CAAC,MAAa,CAAC,CAAC;QAC/C,MAAM,MAAM,CAAC,KAAK,EAAE,CAAC;IACzB,CAAC,CAAC,CAAC;IAEH,MAAM,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;IACjC,OAAO,OAAO,CAAC,MAAM,CAAC;AAC1B,CAAC"}
|
package/lib/esm/index.js
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Vertesia Rollup Import Plugin
|
|
3
|
+
*
|
|
4
|
+
* A flexible Rollup plugin for transforming imports with custom compilers and validation.
|
|
5
|
+
* Supports preset transformers for common use cases (skills, raw files) and custom transformers.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import { vertesiaImportPlugin, skillTransformer, rawTransformer } from '@vertesia/build-tools';
|
|
10
|
+
*
|
|
11
|
+
* export default {
|
|
12
|
+
* plugins: [
|
|
13
|
+
* vertesiaImportPlugin({
|
|
14
|
+
* transformers: [skillTransformer, rawTransformer]
|
|
15
|
+
* })
|
|
16
|
+
* ]
|
|
17
|
+
* };
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
// Core plugin
|
|
21
|
+
export { vertesiaImportPlugin } from './plugin.js';
|
|
22
|
+
// Presets
|
|
23
|
+
export { skillTransformer, rawTransformer, SkillDefinitionSchema } from './presets/index.js';
|
|
24
|
+
// Utilities
|
|
25
|
+
export { parseFrontmatter } from './parsers/frontmatter.js';
|
|
26
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AAEH,cAAc;AACd,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAanD,UAAU;AACV,OAAO,EACH,gBAAgB,EAChB,cAAc,EACd,qBAAqB,EAGxB,MAAM,oBAAoB,CAAC;AAE5B,YAAY;AACZ,OAAO,EAAE,gBAAgB,EAA0B,MAAM,0BAA0B,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Frontmatter parser utility using gray-matter
|
|
3
|
+
*/
|
|
4
|
+
import matter from 'gray-matter';
|
|
5
|
+
/**
|
|
6
|
+
* Parse YAML frontmatter from markdown content
|
|
7
|
+
*
|
|
8
|
+
* @param content - Raw markdown content with optional frontmatter
|
|
9
|
+
* @returns Parsed frontmatter and content
|
|
10
|
+
*/
|
|
11
|
+
export function parseFrontmatter(content) {
|
|
12
|
+
const result = matter(content);
|
|
13
|
+
return {
|
|
14
|
+
frontmatter: result.data,
|
|
15
|
+
content: result.content,
|
|
16
|
+
original: content
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=frontmatter.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"frontmatter.js","sourceRoot":"","sources":["../../../src/parsers/frontmatter.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,MAAM,MAAM,aAAa,CAAC;AAajC;;;;;GAKG;AACH,MAAM,UAAU,gBAAgB,CAAC,OAAe;IAC5C,MAAM,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,CAAC;IAE/B,OAAO;QACH,WAAW,EAAE,MAAM,CAAC,IAAI;QACxB,OAAO,EAAE,MAAM,CAAC,OAAO;QACvB,QAAQ,EAAE,OAAO;KACpB,CAAC;AACN,CAAC"}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Core Rollup plugin implementation for transforming imports
|
|
3
|
+
*/
|
|
4
|
+
import { readFileSync } from 'node:fs';
|
|
5
|
+
import path from 'node:path';
|
|
6
|
+
import { copyAssets } from './utils/asset-copy.js';
|
|
7
|
+
import { compileWidgets } from './utils/widget-compiler.js';
|
|
8
|
+
/**
|
|
9
|
+
* Creates a Rollup plugin that transforms imports based on configured rules
|
|
10
|
+
*/
|
|
11
|
+
export function vertesiaImportPlugin(config) {
|
|
12
|
+
const { transformers, assetsDir = './dist', widgetConfig } = config;
|
|
13
|
+
if (!transformers || transformers.length === 0) {
|
|
14
|
+
throw new Error('vertesiaImportPlugin: At least one transformer must be configured');
|
|
15
|
+
}
|
|
16
|
+
// Track assets to copy and widgets to compile
|
|
17
|
+
const assetsToProcess = [];
|
|
18
|
+
const widgetsToCompile = [];
|
|
19
|
+
const shouldCopyAssets = assetsDir !== false;
|
|
20
|
+
const shouldCompileWidgets = widgetConfig !== undefined && assetsDir !== false;
|
|
21
|
+
return {
|
|
22
|
+
name: 'vertesia-import-plugin',
|
|
23
|
+
/**
|
|
24
|
+
* Resolve import IDs to handle pattern-based imports
|
|
25
|
+
*/
|
|
26
|
+
resolveId(source, importer) {
|
|
27
|
+
// Check if any transformer pattern matches
|
|
28
|
+
for (const transformer of transformers) {
|
|
29
|
+
if (transformer.pattern.test(source)) {
|
|
30
|
+
// Handle relative imports
|
|
31
|
+
if (source.startsWith('.') && importer) {
|
|
32
|
+
const cleanSource = source.replace(transformer.pattern, '');
|
|
33
|
+
const resolved = path.resolve(path.dirname(importer), cleanSource);
|
|
34
|
+
// Return with the pattern suffix to identify it in load
|
|
35
|
+
const suffix = source.match(transformer.pattern)?.[0] || '';
|
|
36
|
+
return resolved + suffix;
|
|
37
|
+
}
|
|
38
|
+
return source;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
return null; // Let other plugins handle it
|
|
42
|
+
},
|
|
43
|
+
/**
|
|
44
|
+
* Load and transform the file content
|
|
45
|
+
*/
|
|
46
|
+
async load(id) {
|
|
47
|
+
// Find matching transformer
|
|
48
|
+
let matchedTransformer;
|
|
49
|
+
let cleanId = id;
|
|
50
|
+
for (const transformer of transformers) {
|
|
51
|
+
if (transformer.pattern.test(id)) {
|
|
52
|
+
matchedTransformer = transformer;
|
|
53
|
+
// Remove query parameters to get actual file path
|
|
54
|
+
// For example: '/path/file.md?skill' -> '/path/file.md'
|
|
55
|
+
// '/path/file.html?raw' -> '/path/file.html'
|
|
56
|
+
const queryIndex = id.indexOf('?');
|
|
57
|
+
cleanId = queryIndex >= 0 ? id.substring(0, queryIndex) : id;
|
|
58
|
+
break;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
if (!matchedTransformer) {
|
|
62
|
+
return null; // Not for us
|
|
63
|
+
}
|
|
64
|
+
try {
|
|
65
|
+
// Read file content
|
|
66
|
+
const content = readFileSync(cleanId, 'utf-8');
|
|
67
|
+
// Transform the content
|
|
68
|
+
const result = await matchedTransformer.transform(content, cleanId);
|
|
69
|
+
// Collect assets if any
|
|
70
|
+
if (result.assets && shouldCopyAssets) {
|
|
71
|
+
assetsToProcess.push(...result.assets);
|
|
72
|
+
}
|
|
73
|
+
// Collect widgets if any
|
|
74
|
+
if (result.widgets && shouldCompileWidgets) {
|
|
75
|
+
widgetsToCompile.push(...result.widgets);
|
|
76
|
+
}
|
|
77
|
+
// Validate if schema provided
|
|
78
|
+
if (matchedTransformer.schema) {
|
|
79
|
+
const validation = matchedTransformer.schema.safeParse(result.data);
|
|
80
|
+
if (!validation.success) {
|
|
81
|
+
const errors = validation.error.errors
|
|
82
|
+
.map((err) => ` - ${err.path.join('.')}: ${err.message}`)
|
|
83
|
+
.join('\n');
|
|
84
|
+
throw new Error(`Validation failed for ${id}:\n${errors}`);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
// Generate code
|
|
88
|
+
if (result.code) {
|
|
89
|
+
// Custom code provided
|
|
90
|
+
return result.code;
|
|
91
|
+
}
|
|
92
|
+
else {
|
|
93
|
+
// Default: export data (escape if string, otherwise stringify as JSON)
|
|
94
|
+
const imports = result.imports ? result.imports.join('\n') + '\n\n' : '';
|
|
95
|
+
const dataJson = JSON.stringify(result.data, null, 2);
|
|
96
|
+
return `${imports}export default ${dataJson};`;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
catch (error) {
|
|
100
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
101
|
+
this.error(`Failed to transform ${id}: ${message}`);
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
/**
|
|
105
|
+
* Copy assets and compile widgets after all modules are loaded
|
|
106
|
+
*/
|
|
107
|
+
async buildEnd() {
|
|
108
|
+
// Copy script assets
|
|
109
|
+
if (shouldCopyAssets && assetsToProcess.length > 0) {
|
|
110
|
+
try {
|
|
111
|
+
const copied = copyAssets(assetsToProcess, assetsDir);
|
|
112
|
+
console.log(`Copied ${copied} asset file(s) to ${assetsDir}`);
|
|
113
|
+
}
|
|
114
|
+
catch (error) {
|
|
115
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
116
|
+
this.warn(`Failed to copy assets: ${message}`);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
// Compile widgets
|
|
120
|
+
if (shouldCompileWidgets && widgetsToCompile.length > 0) {
|
|
121
|
+
try {
|
|
122
|
+
const widgetsDir = config.widgetsDir || 'widgets';
|
|
123
|
+
const outputDir = path.join(assetsDir, widgetsDir);
|
|
124
|
+
console.log(`Compiling ${widgetsToCompile.length} widget(s)...`);
|
|
125
|
+
const compiled = await compileWidgets(widgetsToCompile, outputDir, widgetConfig);
|
|
126
|
+
console.log(`Compiled ${compiled} widget(s) to ${outputDir}`);
|
|
127
|
+
}
|
|
128
|
+
catch (error) {
|
|
129
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
130
|
+
this.error(`Failed to compile widgets: ${message}`);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
};
|
|
135
|
+
}
|
|
136
|
+
//# sourceMappingURL=plugin.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../../src/plugin.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/presets/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,gBAAgB,EAAE,qBAAqB,EAA+C,MAAM,YAAY,CAAC;AAClH,OAAO,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Raw transformer preset for importing file content as strings
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* Raw transformer preset
|
|
6
|
+
* Transforms any file with ?raw suffix into a string export
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import template from './template.html?raw';
|
|
11
|
+
* // template is a string containing the file content
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export const rawTransformer = {
|
|
15
|
+
pattern: /\?raw$/,
|
|
16
|
+
transform: (content) => {
|
|
17
|
+
return {
|
|
18
|
+
data: content
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=raw.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"raw.js","sourceRoot":"","sources":["../../../src/presets/raw.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH;;;;;;;;;GASG;AACH,MAAM,CAAC,MAAM,cAAc,GAAsB;IAC7C,OAAO,EAAE,QAAQ;IACjB,SAAS,EAAE,CAAC,OAAe,EAAE,EAAE;QAC3B,OAAO;YACH,IAAI,EAAE,OAAO;SAChB,CAAC;IACN,CAAC;CACJ,CAAC"}
|