Skip to content

Commit

Permalink
chore: bump version to v1.7.0-beta.2-b
Browse files Browse the repository at this point in the history
  • Loading branch information
bhsd-harry committed Apr 25, 2024
1 parent 4e1c3a4 commit 78c5e3f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extensions/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ declare type WorkerListener<T> = ({data: [rid, res, resRaw]}: {data: [number, T,

/** web worker */
const workerJS = (): void => {
importScripts('https://testingcf.jsdelivr.net/npm/wikiparser-node@1.7.0-beta.1/bundle/bundle.min.js');
importScripts('https://testingcf.jsdelivr.net/gh/bhsd-harry/wikiparser-node@1.7.0-beta.2-beta.1/bundle/bundle.min.js');
const entities = {'&': 'amp', '<': 'lt', '>': 'gt'};

/** @implements */
Expand Down
2 changes: 1 addition & 1 deletion extensions/dist/base.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(() => {
const workerJS = () => {
importScripts('https://testingcf.jsdelivr.net/npm/wikiparser-node@1.7.0-beta.1/bundle/bundle.min.js');
importScripts('https://testingcf.jsdelivr.net/gh/bhsd-harry/wikiparser-node@1.7.0-beta.2-beta.1/bundle/bundle.min.js');
const entities = { '&': 'amp', '<': 'lt', '>': 'gt' };
self.onmessage = ({ data }) => {
const [command, qid, wikitext, include, stage] = data;
Expand Down
1 change: 1 addition & 0 deletions extensions/dist/lint.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ class Linter {
endLineNumber: endLine + 1,
endColumn: endCol + 1,
severity: severity === 'error' ? 8 : 4,
rule,
message,
}));
}
Expand Down

0 comments on commit 78c5e3f

Please sign in to comment.