Compare commits
No commits in common. "18a162c6d70eb96196a1dbe2294f21f2510ee443" and "a4c1c88138596366952fcd9cee6225ca95c3e015" have entirely different histories.
18a162c6d7
...
a4c1c88138
7 changed files with 9 additions and 958 deletions
|
@ -12,5 +12,4 @@ jobs:
|
||||||
with:
|
with:
|
||||||
cache: "yarn"
|
cache: "yarn"
|
||||||
- run: yarn install
|
- run: yarn install
|
||||||
- run: yarn lint
|
|
||||||
- run: yarn coverage
|
- run: yarn coverage
|
||||||
|
|
|
@ -1,23 +0,0 @@
|
||||||
import js from "@eslint/js";
|
|
||||||
import globals from "globals";
|
|
||||||
import tseslint from "typescript-eslint";
|
|
||||||
import {defineConfig, globalIgnores} from "eslint/config";
|
|
||||||
|
|
||||||
export default defineConfig([
|
|
||||||
globalIgnores([".yarn/**", "coverage/**", "lib/**"]),
|
|
||||||
{
|
|
||||||
files: ["**/*.{js,mjs,cjs,ts,mts,cts}"],
|
|
||||||
plugins: {js},
|
|
||||||
extends: ["js/recommended"],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
files: ["**/*.{js,mjs,cjs,ts,mts,cts}"],
|
|
||||||
languageOptions: {globals: {...globals.browser, ...globals.node}},
|
|
||||||
},
|
|
||||||
tseslint.configs.recommended,
|
|
||||||
{
|
|
||||||
rules: {
|
|
||||||
"@typescript-eslint/no-explicit-any": "off",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
]);
|
|
|
@ -26,8 +26,7 @@
|
||||||
"build": "tsc && vite build",
|
"build": "tsc && vite build",
|
||||||
"test": "vitest",
|
"test": "vitest",
|
||||||
"coverage": "vitest run --coverage",
|
"coverage": "vitest run --coverage",
|
||||||
"format": "prettier . --write",
|
"format": "prettier . --write"
|
||||||
"lint": "eslint"
|
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"source": "src/library.ts",
|
"source": "src/library.ts",
|
||||||
|
@ -37,15 +36,11 @@
|
||||||
"lib/**/*"
|
"lib/**/*"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "^9.30.0",
|
|
||||||
"@types/node": "^24.0.3",
|
"@types/node": "^24.0.3",
|
||||||
"@vitest/coverage-v8": "^3.2.4",
|
"@vitest/coverage-v8": "^3.2.4",
|
||||||
"eslint": "^9.30.0",
|
|
||||||
"globals": "^16.2.0",
|
|
||||||
"prettier": "^3.6.0",
|
"prettier": "^3.6.0",
|
||||||
"ts-node": "^10.9.2",
|
"ts-node": "^10.9.2",
|
||||||
"typescript": "^5.8.3",
|
"typescript": "^5.8.3",
|
||||||
"typescript-eslint": "^8.35.0",
|
|
||||||
"vite": "^6.3.5",
|
"vite": "^6.3.5",
|
||||||
"vite-plugin-dts": "^4.5.4",
|
"vite-plugin-dts": "^4.5.4",
|
||||||
"vitest": "^3.2.4"
|
"vitest": "^3.2.4"
|
||||||
|
|
|
@ -29,7 +29,6 @@ export type SerializedModel<T extends object, Shape extends ModelShape<T>> = {
|
||||||
* This is an experimental serialized model type declaration.
|
* This is an experimental serialized model type declaration.
|
||||||
* @deprecated
|
* @deprecated
|
||||||
*/
|
*/
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
||||||
type ExperimentalSerializedModel<
|
type ExperimentalSerializedModel<
|
||||||
T extends object,
|
T extends object,
|
||||||
Shape extends ModelShape<T>,
|
Shape extends ModelShape<T>,
|
||||||
|
|
|
@ -32,10 +32,7 @@ export abstract class Type<SerializedType, ModelType> {
|
||||||
* Reset the difference between the original value and the current one.
|
* Reset the difference between the original value and the current one.
|
||||||
* @param value Value for which reset diff data.
|
* @param value Value for which reset diff data.
|
||||||
*/
|
*/
|
||||||
resetDiff(
|
resetDiff(value: ModelType | null | undefined): void {
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
||||||
value: ModelType | null | undefined,
|
|
||||||
): void {
|
|
||||||
// By default, nothing to do.
|
// By default, nothing to do.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -80,7 +77,6 @@ export abstract class Type<SerializedType, ModelType> {
|
||||||
applyPatch<T extends ModelType>(
|
applyPatch<T extends ModelType>(
|
||||||
currentValue: T | null | undefined,
|
currentValue: T | null | undefined,
|
||||||
patchValue: SerializedType | null | undefined,
|
patchValue: SerializedType | null | undefined,
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
||||||
updateOriginals: boolean,
|
updateOriginals: boolean,
|
||||||
): T | null | undefined {
|
): T | null | undefined {
|
||||||
return this.deserialize(patchValue) as T;
|
return this.deserialize(patchValue) as T;
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import {defineConfig, UserConfig} from "vite";
|
import {ConfigEnv, defineConfig, UserConfig} from "vite";
|
||||||
import dts from "vite-plugin-dts";
|
import dts from "vite-plugin-dts";
|
||||||
|
|
||||||
// https://vitejs.dev/config/
|
// https://vitejs.dev/config/
|
||||||
|
|
||||||
export default defineConfig((): UserConfig => {
|
export default defineConfig(({mode}: ConfigEnv): UserConfig => {
|
||||||
return {
|
return {
|
||||||
build: {
|
build: {
|
||||||
outDir: "lib",
|
outDir: "lib",
|
||||||
|
|
Loading…
Add table
Reference in a new issue