oderwat / vscode-indent-rainbow

Extension which shows indentation with a faint rainbow colored background to make them more readable
MIT License
417 stars 57 forks source link

Update package.json{.main} to reflect movement of ./extension.ts to ./src/extension.ts #117

Closed AlbinoDrought closed 3 years ago

AlbinoDrought commented 3 years ago
7.4.0 7.5.0
Commit a8c564d49f06230e628f1b5087910968be268301 d22d79230dfa7e6a30947a3195fdba93ea66cfde
Source Location ./extension.ts ./src/extension.ts
Compiled Output Destination ./out/extension.js ./out/src/extension.js
Package.json main ./out/extension ./out/extension (!)

package.json{.main} points to ./out/extension, but this path no longer exists. This PR updates it to the new existing path. This causes the extension to once again load in code-oss/vscodium, fixing https://github.com/oderwat/vscode-indent-rainbow/issues/100

oderwat commented 3 years ago

Thank you!

AlbinoDrought commented 3 years ago

Hey, for what it's worth the .vsix file in this repo (and maybe on the official VSCode extension marketplace?) seems to include some old files in the out folder:

image

I experienced the same issue when building locally and was able to solve it with an rm -rf out before building 😅

Cheers!

oderwat commented 3 years ago

I added that to the publish script and created a new version. Thank you for the help!