Skip to content

Commit

Permalink
chore: bump version to v1.12.7-b
Browse files Browse the repository at this point in the history
  • Loading branch information
bhsd-harry committed Aug 24, 2024
1 parent 8ab9424 commit f16cead
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions extensions/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import type {Config, LintError, AST, wikiparse as Wikiparse} from './typings';

declare type WorkerListener<T> = (e: {data: [number, T, string]}) => void;

const version = '1.12.6';
const version = '1.12.7';

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

/** @implements */
Expand Down
4 changes: 2 additions & 2 deletions extensions/dist/base.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(() => {
const version = '1.12.6';
const version = '1.12.7';
const workerJS = () => {
importScripts(`https://testingcf.jsdelivr.net/npm/wikiparser-node@$VERSION-b/bundle/bundle.min.js`);
importScripts(`https://testingcf.jsdelivr.net/gh/bhsd-harry/wikiparser-node@$VERSION-b/bundle/bundle.min.js`);
const entities = { '&': 'amp', '<': 'lt', '>': 'gt' };
self.onmessage = ({ data }) => {
const [command, qid, wikitext, include, stage] = data;
Expand Down

0 comments on commit f16cead

Please sign in to comment.