Skip to content

Commit 7b07ebe

Browse files
committed
Move store to directory
1 parent 8d3135a commit 7b07ebe

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@freenit-framework/core",
3-
"version": "0.0.42",
3+
"version": "0.0.43",
44
"private": false,
55
"author": "Goran Mekić <meka@tilda.center>",
66
"license": "BSD-2-Clause",

src/lib/auth.svelte.ts renamed to src/lib/base-store/auth.svelte.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { methods } from '.'
1+
import { methods } from '..'
22

33
export default class AuthStore {
44
access = $state(new Date(0))
File renamed without changes.

src/lib/role.svelte.ts renamed to src/lib/base-store/role.svelte.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { methods } from '.'
1+
import { methods } from '..'
22

33
export default class RoleStore {
44
list = $state({ page: 0, perpage: 0, data: [], total: 0 })

src/lib/theme.svelte.ts renamed to src/lib/base-store/theme.svelte.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { methods } from '.'
1+
import { methods } from '..'
22

33
export default class ThemeStore {
44
list = $state({})

src/lib/user.svelte.ts renamed to src/lib/base-store/user.svelte.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { methods } from '.'
1+
import { methods } from '..'
22

33
export default class UserStore {
44
list = $state({ page: 0, perpage: 0, data: [], total: 0 })

0 commit comments

Comments
 (0)