Skip to content

Commit

Permalink
Call new Windows service (#4625)
Browse files Browse the repository at this point in the history
fixes #4624
<!-- Link to relevant issue (for ex: "fixes #1234") which will
automatically close the issue once the PR is merged -->

## PR Type
<!-- Please uncomment one ore more that apply to this PR -->

 Bugfix
<!-- - Feature -->
<!-- - Code style update (formatting) -->
<!-- - Refactoring (no functional changes, no api changes) -->
<!-- - Build or CI related changes -->
<!-- - Documentation content changes -->
<!-- - Sample app changes -->
<!-- - Other... Please describe: -->


## Describe the current behavior?
<!-- Please describe the current behavior that is being modified or link
to a relevant issue. -->
We were calling the old Windows packaging service.

## Describe the new behavior?
We are now calling the new Windows service

## PR Checklist

- [ x] Test: run `npm run test` and ensure that all tests pass
- [ x] Target main branch (or an appropriate release branch if
appropriate for a bug fix)
- [ x] Ensure that your contribution follows [standard accessibility
guidelines](https://docs.microsoft.com/en-us/microsoft-edge/accessibility/design).
Use tools like https://webhint.io/ to validate your changes.


## Additional Information
  • Loading branch information
jgw96 authored Jan 23, 2024
1 parent 0e52724 commit eaf7b3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/pwabuilder-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "PWABuilder Studio",
"description": "PWABuilder Studio makes VSCode the best development environment for building PWAs!",
"publisher": "PWABuilder",
"version": "1.3.3",
"version": "1.3.5",
"icon": "store_assets/icon_512.png",
"scripts": {
"vscode:prepublish": "npm run esbuild-base",
Expand Down
4 changes: 2 additions & 2 deletions apps/pwabuilder-vscode/src/library/package-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as vscode from "vscode";
import { AndroidPackageOptions } from "../android-interfaces";
import { URL } from "url";

import { getSessionID, standard_headers, trackEvent, trackException } from "../services/usage-analytics";
import { standard_headers, trackEvent, trackException } from "../services/usage-analytics";
import { getURL } from "../services/web-publish";

export const WindowsDocsURL =
Expand Down Expand Up @@ -75,7 +75,7 @@ export async function packageForWindows(options: any) {
try {

response = await fetch(
"https://pwabuilder-winserver.centralus.cloudapp.azure.com/msix/generatezip",
"https://pwabuilder-windows-docker.azurewebsites.net/msix/generatezip",
{
method: "POST",
body: JSON.stringify(options),
Expand Down

0 comments on commit eaf7b3a

Please sign in to comment.