Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ BUILD_DIR := build/$(config)
DIST_DIR := dist
SRC_DIR := src
EXTENSION_JS := $(DIST_DIR)/extension.js
EXTENSION := $(BUILD_DIR)/pony-$(VERSION).vsix
EXTENSION := $(BUILD_DIR)/ponylang-vscode-extension-$(VERSION).vsix
SOURCE_FILES := $(shell find $(SRC_DIR) -name *.ts)

all: $(EXTENSION)

$(EXTENSION): $(SOURCE_FILES) $(BUILD_DIR) node_modules $(BUILD_DIR)
npm run vsce package -- --no-git-tag-version --out="$(BUILD_DIR)/pony-$(VERSION).vsix" "$(VERSION)"
npm run vsce package -- --no-git-tag-version --out="$(BUILD_DIR)/ponylang-vscode-extension-$(VERSION).vsix" "$(VERSION)"

node_modules:
npm install
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ make

```sh
# uninstall any previously installed extensions
code --uninstall-extension ponylang.pony
code --uninstall-extension ponylang.ponylang-vscode-extension

# install the newly-built package
code --install-extension "build/release/pony-${VERSION}.vsix"
code --install-extension "build/release/ponylang-vscode-extension-${VERSION}.vsix"
```

## Configure the Language Server
Expand Down
201 changes: 120 additions & 81 deletions package-lock.json

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

Loading
Loading