Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable webpack for now #30

Merged
merged 1 commit into from
Oct 8, 2020
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
1 change: 0 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ docs/**
**/.eslintrc.json
**/*.map
**/*.ts
node_modules/**
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Change Log

## 0.5.0 (Thu Set 17 2020)
## 0.5.2 (Wed Oct 7 2020)

- Disable webpack bundling

## 0.5.1 (Wed Oct 7 2020)

- Add telemetry

## 0.5.0 (Wed Oct 7 2020)

- Experimental Bzl integration (disabled by default)

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "bazel-stack-vscode",
"displayName": "bazel-stack-vscode",
"description": "Bazel Support for Visual Studio Code",
"version": "0.5.1",
"version": "0.5.2",
"publisher": "StackBuild",
"license": "Apache-2.0",
"icon": "stackb-full.png",
Expand Down Expand Up @@ -993,7 +993,8 @@
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run clean && webpack --mode production",
"vscode:prepublish:webpack": "npm run clean && webpack --mode production",
"vscode:prepublish": "npm run clean && npm run compile",
"vscode-package": "vsce package --out out/extension.vsix",
"vscode-install": "npm run vscode-package && code --install-extension out/extension.vsix",
"webpack": "npm run clean && webpack --mode development",
Expand Down
10 changes: 5 additions & 5 deletions src/bzl/view/signup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -534,14 +534,14 @@ export class BzlGetStarted implements vscode.Disposable {
heading: 'Step 2',
subheading: 'Select a Plan',
lead: '<p>Choose the plan that\'s best for you</p>',
cards: plans.map(plan => {
cards: plans.map(p => {
return {
name: plan.name!,
name: p.name!,
image: 'https://user-images.githubusercontent.com/50580/78734937-bfa13800-7906-11ea-8e94-f76af76a65ea.png',
description: plan.description!,
detail: formatPlanAmount(plan.amount, plan.interval),
description: p.description!,
detail: formatPlanAmount(p.amount, p.interval),
onclick: async (name: string): Promise<void> => {
resolve(plan);
resolve(p);
}
};
}),
Expand Down