Skip to content

Commit

Permalink
Merge pull request #30 from stackb/dsiable-webpack
Browse files Browse the repository at this point in the history
Disable webpack for now
  • Loading branch information
pcj authored Oct 8, 2020
2 parents 96420af + 48d6621 commit f187d3b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 10 deletions.
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

0 comments on commit f187d3b

Please sign in to comment.