Skip to content

Commit badeab0

Browse files
Bump patch version v0.0.22
1 parent 7ced6f4 commit badeab0

File tree

1 file changed

+22
-20
lines changed

1 file changed

+22
-20
lines changed

scripts/package.js

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -24,33 +24,35 @@ try {
2424
// Based on your main entry point in dist/extension.js, most of these are build-time only
2525
};
2626

27-
const prodPkg = {
28-
name: pkg.name,
29-
publisher: pkg.publisher,
30-
displayName: pkg.displayName,
31-
description: pkg.description,
32-
repository: pkg.repository,
33-
version: pkg.version,
34-
engines: pkg.engines,
35-
categories: pkg.categories,
36-
activationEvents: pkg.activationEvents,
37-
main: pkg.main,
38-
contributes: pkg.contributes,
39-
dependencies: runtimeDeps,
40-
// Remove all scripts to avoid any execution during packaging
41-
scripts: {}
42-
};
27+
// const prodPkg = {
28+
// name: pkg.name,
29+
// publisher: pkg.publisher,
30+
// displayName: pkg.displayName,
31+
// description: pkg.description,
32+
// repository: pkg.repository,
33+
// version: pkg.version,
34+
// engines: pkg.engines,
35+
// categories: pkg.categories,
36+
// activationEvents: pkg.activationEvents,
37+
// main: pkg.main,
38+
// contributes: pkg.contributes,
39+
// dependencies: runtimeDeps,
40+
// // Remove all scripts to avoid any execution during packaging
41+
// scripts: {}
42+
// };
4343

44-
fs.writeFileSync(
45-
path.join(tempDir, 'package.json'),
46-
JSON.stringify(prodPkg, null, 2)
47-
);
44+
// fs.writeFileSync(
45+
// path.join(tempDir, 'package.json'),
46+
// JSON.stringify(prodPkg, null, 2)
47+
// );
4848

4949
// Copy essential files for VSCode extension
5050
const filesToCopy = [
5151
'dist',
5252
'icons',
5353
'syntaxes',
54+
'robot.png',
55+
'package.json',
5456
'language-configuration.json',
5557
'justfile',
5658
'README.md',

0 commit comments

Comments
 (0)