Skip to content

Commit

Permalink
Switch to yarn & enable untrusted workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
memcorrupt committed Jan 31, 2024
1 parent fd6d108 commit e5a74e7
Show file tree
Hide file tree
Showing 4 changed files with 2,189 additions and 2,242 deletions.
7 changes: 4 additions & 3 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

# Include only what's needed
!out/**/extension.js
!LICENSE
!node_modules
!logo.png
!package.json
!README.md
!LICENSE
!README.md
!package.json
14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Luraph (vscode)",
"publisher": "luraph",
"description": "Obfuscate scripts via the Luraph API from the comfort of your editor.",
"version": "0.0.2",
"version": "0.0.3",
"author": "memcorrupt",
"license": "MIT",
"engines": {
Expand All @@ -30,6 +30,12 @@
"files": [
"out/**/*"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"contributes": {
"commands": [
{
Expand Down Expand Up @@ -58,9 +64,9 @@
"pretest": "pnpm run compile && pnpm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"preinstall": "npx only-allow pnpm",
"deploy": "vsce publish --no-dependencies",
"package": "vsce package --no-dependencies"
"preinstall": "npx only-allow yarn",
"deploy": "npx vsce publish",
"package": "npx vsce package"
},
"dependencies": {
"luraph": "^2.0.3"
Expand Down
Loading

0 comments on commit e5a74e7

Please sign in to comment.