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

Update all dependencies #104

Merged
merged 1 commit into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
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
402 changes: 201 additions & 201 deletions .yarn/releases/yarn-3.6.1.cjs → .yarn/releases/yarn-3.6.3.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-3.6.1.cjs
yarnPath: .yarn/releases/yarn-3.6.3.cjs
50 changes: 25 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
{
"name": "@amadeus-it-group/tansu",
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.3",
"@angular/cli": "^16.1.3",
"@angular/common": "^16.1.3",
"@angular/compiler": "^16.1.3",
"@angular/compiler-cli": "^16.1.3",
"@angular/core": "^16.1.3",
"@angular/platform-browser": "^16.1.3",
"@angular/platform-browser-dynamic": "^16.1.3",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@microsoft/api-documenter": "^7.22.21",
"@microsoft/api-extractor": "^7.36.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jasmine": "^4.3.5",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"@angular-devkit/build-angular": "^16.2.4",
"@angular/cli": "^16.2.4",
"@angular/common": "^16.2.7",
"@angular/compiler": "^16.2.7",
"@angular/compiler-cli": "^16.2.7",
"@angular/core": "^16.2.7",
"@angular/platform-browser": "^16.2.7",
"@angular/platform-browser-dynamic": "^16.2.7",
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@microsoft/api-documenter": "^7.23.9",
"@microsoft/api-extractor": "^7.38.0",
"@rollup/plugin-typescript": "^11.1.4",
"@types/jasmine": "^4.3.6",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jasmine-core": "^5.0.1",
"jasmine-core": "^5.1.1",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"prettier": "^2.8.8",
"prettier": "^3.0.3",
"pretty-quick": "^3.1.3",
"rollup": "^3.26.0",
"rollup": "^3.29.4",
"rxjs": "^7.8.1",
"svelte": "^4.0.1",
"typescript": "^5.1.6",
"zone.js": "^0.13.1"
"svelte": "^4.2.1",
"typescript": "^5.2.2",
"zone.js": "^0.14.0"
},
"scripts": {
"test": "ng test -c ci",
Expand All @@ -60,5 +60,5 @@
"@commitlint/config-conventional"
]
},
"packageManager": "yarn@3.6.1"
"packageManager": "yarn@3.6.3"
}
16 changes: 13 additions & 3 deletions src/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@ describe('stores', () => {
it('should allow overriding equal', () => {
const equalCalls: [number, number][] = [];
class ModuloStore extends Store<number> {
constructor(public readonly modulo: number, initialValue: number) {
constructor(
public readonly modulo: number,
initialValue: number
) {
super(initialValue);
}
protected override equal(a: number, b: number): boolean {
Expand Down Expand Up @@ -140,7 +143,10 @@ describe('stores', () => {
it('should allow overriding notEqual', () => {
const notEqualCalls: [number, number][] = [];
class ModuloStore extends Store<number> {
constructor(public readonly modulo: number, initialValue: number) {
constructor(
public readonly modulo: number,
initialValue: number
) {
super(initialValue);
}
protected override notEqual(a: number, b: number): boolean {
Expand Down Expand Up @@ -1711,7 +1717,11 @@ describe('stores', () => {

it('should work with DebounceStore example', () => {
class DebounceStore<T> extends DerivedStore<T, SubscribableStore<T>> {
constructor(store: SubscribableStore<T>, initialValue: T, private _delay: number) {
constructor(
store: SubscribableStore<T>,
initialValue: T,
private _delay: number
) {
super(store, initialValue);
}
protected derive(value: T) {
Expand Down
4 changes: 2 additions & 2 deletions test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// This file is required by karma.conf.js and loads recursively all the .spec and framework files

import 'zone.js/dist/zone';
import 'zone.js/dist/zone-testing';
import 'zone.js';
import 'zone.js/testing';
import { getTestBed } from '@angular/core/testing';
import {
BrowserDynamicTestingModule,
Expand Down
Loading