2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-06-05 16:42:27 +03:00

chore: update build system and dependencies (#155)

* chore: fix swc + rollup transform

* chore: fix pkg-task args parsing

* chore: update lerna, rollup and swc to build proper es6 files

* chore: fix swc build for es targets

* ci: nodes matrix to newest versions

* ci: rollup to mjs, swc to json

* ci: add canary publish

* ci: no git tag for canary

* ci: no private publish for canary

* ci: remove --canary from publish-canary

* fix: remove gitHead from package.json

* fix: tests setup

* fix: bbob plugin helper imports

* fix: plugin helper build priority and circular deps

* fix: add nx for parallel build

* fix: npm ci

* fix: code ql

* fix: remove exports directive

* fix: rollup build

* fix: vue2 test and minify

* fix: bundle size limits

* feat: bundlephobia pr review

* feat: bundlephobia more popular action

* feat: publish branch to npm

* fix: secret NPM token

* fix: bundlephobia version

* fix: remove bundlephobia checker

* fix: npm publish in PR

* chore: release 2.8.3

* chore: fix test runs on CI, removed 14.x version

* fix: sync package-lock

* fix: remove lock files in sub packages

* fix: bundlesize > bundlesize2

* fix: update lock files

* fix: lock file in vue2-example
This commit is contained in:
Nikolay Kost
2022-12-18 03:09:56 +02:00
committed by GitHub
parent 09a197f653
commit 2d1a08ba9a
66 changed files with 24470 additions and 12801 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import {
OPEN_BRAKET,
CLOSE_BRAKET,
SLASH,
} from '@bbob/plugin-helper/lib/char';
} from '@bbob/plugin-helper';
// type, value, line, row,
const TOKEN_TYPE_ID = 'type'; // 0;
+1 -1
View File
@@ -1,2 +1,2 @@
export { TagNode } from '@bbob/plugin-helper';
export { default, parse } from './parse';
export { TagNode } from '@bbob/plugin-helper/lib/TagNode';
+1 -1
View File
@@ -9,7 +9,7 @@ import {
TAB,
EQ,
N,
} from '@bbob/plugin-helper/lib/char';
} from '@bbob/plugin-helper';
import {
Token, TYPE_ATTR_NAME, TYPE_ATTR_VALUE, TYPE_NEW_LINE, TYPE_SPACE, TYPE_TAG, TYPE_WORD,
+1 -1
View File
@@ -9,7 +9,7 @@ import {
TAB,
EQ,
N,
} from '@bbob/plugin-helper/lib/char';
} from '@bbob/plugin-helper';
import {
Token, TYPE_ATTR_NAME, TYPE_ATTR_VALUE, TYPE_NEW_LINE, TYPE_SPACE, TYPE_TAG, TYPE_WORD,
+3 -3
View File
@@ -1,6 +1,6 @@
import TagNode from '@bbob/plugin-helper/lib/TagNode';
import { CLOSE_BRAKET, OPEN_BRAKET } from '@bbob/plugin-helper/lib/char';
import { isTagNode } from '@bbob/plugin-helper/lib/index';
import {
TagNode, CLOSE_BRAKET, OPEN_BRAKET, isTagNode,
} from '@bbob/plugin-helper';
import { createLexer } from './lexer';
import { createList } from './utils';
+1 -1
View File
@@ -1,7 +1,7 @@
import {
QUOTEMARK,
BACKSLASH,
} from '@bbob/plugin-helper/lib/char';
} from '@bbob/plugin-helper';
function CharGrabber(source, options) {
const cursor = {