fix package.json/esbuild.js for files in publish

This commit is contained in:
Michael Lively 2022-07-26 12:19:27 -07:00
parent f3ce5b3a50
commit 2077ae5120
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ if (outputRootIndex >= 0) {
}
const srcDir = path.join(__dirname, 'src');
const outDir = path.join(outputRoot, 'out');
const outDir = path.join(outputRoot, 'notebook-out');
async function build() {
await esbuild.build({

View file

@ -57,7 +57,7 @@
"displayName": "Markdown it ipynb Cell Attachment renderer",
"entrypoint": {
"extends": "vscode.markdown-it-renderer",
"path": "./out/cellAttachmentRenderer.js"
"path": "./notebook-out/cellAttachmentRenderer.js"
}
}
],