solid-refresh
Advanced tools
Comparing version 0.6.1 to 0.6.2
@@ -1,2 +0,2 @@ | ||
import * as babel from '@babel/core'; | ||
import type * as babel from '@babel/core'; | ||
import * as t from '@babel/types'; | ||
@@ -31,1 +31,2 @@ import type { RuntimeType } from '../shared/types'; | ||
export {}; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -7,1 +7,2 @@ /** | ||
export declare function xxHash32(buffer: Uint8Array | string, seed?: number): number; | ||
//# sourceMappingURL=xxhash32.d.ts.map |
@@ -6,1 +6,2 @@ import type { JSX, Accessor } from 'solid-js'; | ||
export default function createProxy<C extends BaseComponent<P>, P>(source: Accessor<C>, name: string, location?: string): (props: P) => JSX.Element; | ||
//# sourceMappingURL=create-proxy.d.ts.map |
@@ -44,9 +44,18 @@ import type { Context, JSX } from 'solid-js'; | ||
type ESMDecline = [type: ESMRuntimeType, hot: ESMHot, inline?: boolean]; | ||
type StandardDecline = [type: StandardRuntimeType, hot: StandardHot, inline?: boolean]; | ||
type StandardDecline = [ | ||
type: StandardRuntimeType, | ||
hot: StandardHot, | ||
inline?: boolean | ||
]; | ||
type Decline = ESMDecline | StandardDecline; | ||
export declare function $$decline(...[type, hot, inline]: Decline): void; | ||
type ESMRefresh = [type: ESMRuntimeType, hot: ESMHot, registry: Registry]; | ||
type StandardRefresh = [type: StandardRuntimeType, hot: StandardHot, registry: Registry]; | ||
type StandardRefresh = [ | ||
type: StandardRuntimeType, | ||
hot: StandardHot, | ||
registry: Registry | ||
]; | ||
type Refresh = ESMRefresh | StandardRefresh; | ||
export declare function $$refresh(...[type, hot, registry]: Refresh): void; | ||
export {}; | ||
//# sourceMappingURL=index.d.ts.map |
export default function isListUpdated(a: Record<string, any> | undefined, b: Record<string, any> | undefined): boolean; | ||
//# sourceMappingURL=is-list-updated.d.ts.map |
export type ESMRuntimeType = 'esm' | 'vite'; | ||
export type StandardRuntimeType = 'standard' | 'webpack5' | 'rspack-esm'; | ||
export type RuntimeType = ESMRuntimeType | StandardRuntimeType; | ||
//# sourceMappingURL=types.d.ts.map |
@@ -7,3 +7,3 @@ { | ||
"license": "MIT", | ||
"version": "0.6.1", | ||
"version": "0.6.2", | ||
"homepage": "https://github.com/solidjs/solid-refresh#readme", | ||
@@ -49,15 +49,16 @@ "repository": { | ||
"devDependencies": { | ||
"@babel/core": "^7.23.2", | ||
"@babel/core": "^7.23.6", | ||
"@biomejs/biome": "^1.5.1", | ||
"@rollup/plugin-node-resolve": "^15.2.3", | ||
"@rollup/plugin-typescript": "^11.1.5", | ||
"@types/babel__core": "^7.20.3", | ||
"@types/babel__generator": "^7.6.6", | ||
"@types/babel__traverse": "^7.20.3", | ||
"@types/node": "^20.8.8", | ||
"prettier": "^3.0.3", | ||
"rollup": "^4.1.4", | ||
"solid-js": "^1.8.3", | ||
"@types/babel__core": "^7.20.5", | ||
"@types/babel__generator": "^7.6.8", | ||
"@types/babel__helper-module-imports": "^7.18.3", | ||
"@types/babel__traverse": "^7.20.4", | ||
"@types/node": "^20.10.5", | ||
"rollup": "^4.9.1", | ||
"solid-js": "^1.8.7", | ||
"tslib": "^2.6.2", | ||
"typescript": "^5.2.2", | ||
"vitest": "^0.34.6" | ||
"typescript": "^5.3.3", | ||
"vitest": "^1.1.0" | ||
}, | ||
@@ -68,5 +69,5 @@ "peerDependencies": { | ||
"dependencies": { | ||
"@babel/generator": "^7.23.0", | ||
"@babel/generator": "^7.23.6", | ||
"@babel/helper-module-imports": "^7.22.15", | ||
"@babel/types": "^7.23.0" | ||
"@babel/types": "^7.23.6" | ||
}, | ||
@@ -76,5 +77,4 @@ "scripts": { | ||
"test": "vitest", | ||
"test:CI": "vitest --no-threads", | ||
"format": "prettier -w \"{tests,src}/**/*.{js,ts}\"" | ||
"test:CI": "vitest" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
100995
27
2432
14
Updated@babel/generator@^7.23.6
Updated@babel/types@^7.23.6