Github Action: Updated dist files
This commit is contained in:
parent
8dbd20b7f1
commit
d6f53df776
4 changed files with 11 additions and 11 deletions
6
dist/base_installer.js
vendored
6
dist/base_installer.js
vendored
|
|
@ -3,9 +3,9 @@
|
|||
// SPDX-License-Identifier: MIT
|
||||
|
||||
'use strict';
|
||||
import {html, render} from 'https://unpkg.com/lit-html?module';
|
||||
import {asyncAppend} from 'https://unpkg.com/lit-html/directives/async-append?module';
|
||||
import * as esptoolPackage from "https://unpkg.com/esp-web-flasher@5.1.2/dist/web/index.js?module"
|
||||
import {html, render} from 'https://cdn.jsdelivr.net/npm/lit-html/+esm';
|
||||
import {asyncAppend} from 'https://cdn.jsdelivr.net/npm/lit-html/directives/async-append/+esm';
|
||||
import * as esptoolPackage from "https://cdn.jsdelivr.net/npm/esp-web-flasher@5.1.2/dist/web/index.js/+esm"
|
||||
|
||||
export const ESP_ROM_BAUD = 115200;
|
||||
|
||||
|
|
|
|||
4
dist/base_installer.min.js
vendored
4
dist/base_installer.min.js
vendored
File diff suppressed because one or more lines are too long
10
dist/cpinstaller.js
vendored
10
dist/cpinstaller.js
vendored
|
|
@ -3,12 +3,12 @@
|
|||
// SPDX-License-Identifier: MIT
|
||||
|
||||
'use strict';
|
||||
import { html } from 'https://unpkg.com/lit-html?module';
|
||||
import { map } from 'https://unpkg.com/lit-html/directives/map?module';
|
||||
import * as toml from "https://unpkg.com/iarna-toml-esm@3.0.5/toml-esm.mjs"
|
||||
import { html } from 'https://cdn.jsdelivr.net/npm/lit-html/+esm';
|
||||
import { map } from 'https://cdn.jsdelivr.net/npm/lit-html/directives/map/+esm';
|
||||
import * as toml from "https://cdn.jsdelivr.net/npm/iarna-toml-esm@3.0.5/+esm"
|
||||
import * as zip from "https://cdn.jsdelivr.net/npm/@zip.js/zip.js@2.6.65/+esm";
|
||||
import * as esptoolPackage from "https://unpkg.com/esp-web-flasher@5.1.2/dist/web/index.js?module"
|
||||
import { REPL } from 'https://cdn.jsdelivr.net/gh/adafruit/circuitpython-repl-js@1.2.1/repl.js';
|
||||
import * as esptoolPackage from "https://cdn.jsdelivr.net/npm/esp-web-flasher@5.1.2/dist/web/index.js/+esm"
|
||||
import { REPL } from 'https://cdn.jsdelivr.net/gh/adafruit/circuitpython-repl-js/repl.js';
|
||||
import { InstallButton, ESP_ROM_BAUD } from "./base_installer.js";
|
||||
|
||||
// TODO: Combine multiple steps together. For now it was easier to make them separate,
|
||||
|
|
|
|||
2
dist/cpinstaller.min.js
vendored
2
dist/cpinstaller.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue