Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump the development-dependencies group across 1 directory with 21 updates #289

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -46,34 +46,34 @@
"devDependencies": {
"@alwatr/style": "workspace:^",
"@deanc/esbuild-plugin-postcss": "^1.0.2",
"@lerna-lite/changed": "^3.2.1",
"@lerna-lite/cli": "^3.2.1",
"@lerna-lite/diff": "^3.2.1",
"@lerna-lite/exec": "^3.2.1",
"@lerna-lite/publish": "^3.2.1",
"@lerna-lite/run": "^3.2.1",
"@lerna-lite/version": "^3.2.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@web/dev-server": "^0.4.2",
"autoprefixer": "^10.4.17",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"@lerna-lite/changed": "^3.5.1",
"@lerna-lite/cli": "^3.5.1",
"@lerna-lite/diff": "^3.5.1",
"@lerna-lite/exec": "^3.5.1",
"@lerna-lite/publish": "^3.5.1",
"@lerna-lite/run": "^3.5.1",
"@lerna-lite/version": "^3.5.1",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@web/dev-server": "^0.4.5",
"autoprefixer": "^10.4.19",
"esbuild": "^0.21.5",
"eslint": "^9.4.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-lit": "^1.11.0",
"eslint-plugin-lit": "^1.14.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.34",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.0.0",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^9.5.14",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.3",
"tailwindcss": "^3.4.1",
"ts-lit-plugin": "^2.0.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"workbox-build": "^7.0.0"
"typescript": "^5.4.5",
"workbox-build": "^7.1.1"
},
"packageManager": "yarn@4.1.0"
}
3,610 changes: 1,843 additions & 1,767 deletions yarn.lock

Large diffs are not rendered by default.


Unchanged files with check annotations Beta

import type {QueryParameters} from '@alwatr/type';

Check failure on line 1 in packages/router/src/type.ts

GitHub Actions / Build & Lint Typescript

Cannot find module '@alwatr/type' or its corresponding type declarations.
/**
* Route context base type.
import {createLogger, definePackage} from '@alwatr/logger';

Check failure on line 1 in packages/router/src/router.ts

GitHub Actions / Build & Lint Typescript

Cannot find module '@alwatr/logger' or its corresponding type declarations.
import {AlwatrObservable} from '@alwatr/signal/observable.js';

Check failure on line 2 in packages/router/src/router.ts

GitHub Actions / Build & Lint Typescript

Cannot find module '@alwatr/signal/observable.js' or its corresponding type declarations.
import type {RouterConfig, PushState, RouteContext, RouteContextBase} from './type.js';
import type {QueryParameters} from '@alwatr/type';

Check failure on line 5 in packages/router/src/router.ts

GitHub Actions / Build & Lint Typescript

Cannot find module '@alwatr/type' or its corresponding type declarations.
definePackage('@alwatr/router', '2.x');
protected override _logger = createLogger('alwatr/router');
get route(): RouteContext {
return this._$data ?? this._makeRouteContext();

Check failure on line 16 in packages/router/src/router.ts

GitHub Actions / Build & Lint Typescript

Property '_$data' does not exist on type 'AlwatrRouter'.
}
constructor(config: RouterConfig) {
super({name: 'alwatr_router'});
this._notify(this._makeRouteContext());

Check failure on line 22 in packages/router/src/router.ts

GitHub Actions / Build & Lint Typescript

Property '_notify' does not exist on type 'AlwatrRouter'.
this._popstateHandler = this._popstateHandler.bind(this);
this._clickHandler = this._clickHandler.bind(this);
if (route == null) return;
this._logger.logMethodArgs?.('redirect', route);
if (keepSectionSlice > 0 && typeof route === 'object' && Array.isArray(route.sectionList)) {
const routeContext = this._getData();

Check failure on line 79 in packages/router/src/router.ts

GitHub Actions / Build & Lint Typescript

Property '_getData' does not exist on type 'AlwatrRouter'.
if (routeContext != null) {
route.sectionList = [...routeContext.sectionList.slice(0, keepSectionSlice), ...route.sectionList];
}
}
const href = typeof route === 'string' ? route : this.url(route);
this._updateBrowserHistory(href, pushState);
this._notify(this._makeRouteContext());

Check failure on line 86 in packages/router/src/router.ts

GitHub Actions / Build & Lint Typescript

Property '_notify' does not exist on type 'AlwatrRouter'.
}
/**
import type {AlwatrServiceResponseSuccessWithMeta, MaybePromise} from '@alwatr/type';

Check failure on line 1 in packages/i18n/src/type.ts

GitHub Actions / Build & Lint Typescript

Cannot find module '@alwatr/type' or its corresponding type declarations.
export type LocaleCode = `${Lowercase<string>}-${Uppercase<string>}`;
import {definePackage} from '@alwatr/logger';

Check failure on line 1 in packages/i18n/src/l10n.ts

GitHub Actions / Build & Lint Typescript

Cannot find module '@alwatr/logger' or its corresponding type declarations.
import {UnicodeDigits, UnicodeLangKeys} from '@alwatr/math';
import {AlwatrObservable} from '@alwatr/signal/observable.js';