Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion makefile → Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
.PHONY: vsix
.PHONY: vsix publish

vsix:
@echo "Packaging VS Code extension into VSIX file..."
LOCALSTACK_WEB_AUTH_REDIRECT=https://app.localstack.cloud/redirect?name=VSCode NODE_ENV=production ANALYTICS_API_URL=https://analytics.localstack.cloud/v1/events npx vsce package
@hash=$$(git rev-parse --short HEAD); \
mv localstack-1.0.0.vsix localstack-1.0.0-$$hash.vsix

publish:
@echo "Publishing VS Code extension..."
LOCALSTACK_WEB_AUTH_REDIRECT=https://app.localstack.cloud/redirect?name=VSCode NODE_ENV=production ANALYTICS_API_URL=https://analytics.localstack.cloud/v1/events npx vsce publish
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "localstack",
"publisher": "LocalStack",
"displayName": "LocalStack Toolkit for VS Code",
"displayName": "LocalStack Toolkit",
"description": "LocalStack - Run locally, deploy globally!",
"version": "1.0.0",
"version": "1.0.1",
"preview": true,
"engines": {
"node": ">=20",
Expand All @@ -24,7 +24,7 @@
},
"icon": "resources/icons/localstack-icon-256x256.png",
"license": "Apache-2.0",
"homepage": "https://github.com/localstack/localstack-vscode-extension/blob/main/README.md",
"homepage": "https://github.com/localstack/localstack-vscode-extension",
"bugs": {
"url": "https://github.com/localstack/localstack-vscode-extension/issues"
},
Expand Down
Loading