Publish the exact sanitized Agent Skill and VS Code preview source tree with independent license boundaries, deterministic provenance manifests, and no private development history. Material design and implementation assistance was provided by OpenAI Codex. Signed-off-by: Cole Speelman <crspeelman@gmail.com>
18 lines
501 B
JavaScript
18 lines
501 B
JavaScript
// SPDX-License-Identifier: AGPL-3.0-only
|
|
'use strict';
|
|
const path = require('node:path');
|
|
const esbuild = require('esbuild');
|
|
esbuild.buildSync({
|
|
entryPoints: [path.join(__dirname, '..', 'src', 'extension.js')],
|
|
outfile: path.join(__dirname, '..', 'dist', 'extension.js'),
|
|
bundle: true,
|
|
platform: 'node',
|
|
format: 'cjs',
|
|
target: 'node20',
|
|
external: ['vscode'],
|
|
legalComments: 'eof',
|
|
banner: {js: '// SPDX-License-Identifier: AGPL-3.0-only'},
|
|
sourcemap: false,
|
|
minify: false,
|
|
});
|