···3333 baseUrl?: string
3434 /** Extension-specific: platforms to build for */
3535 platforms?: ('chrome' | 'firefox')[]
3636+ /** Build-time metadata included in the generated `meta.json`. */
3737+ meta?: {
3838+ /**
3939+ * Minimum app version that is data-compatible with the current schema.
4040+ * Clients running an older version than this will need a full reset rather
4141+ * than just a reload. Surfaced in `meta.json` and the `VERSION_STATUS`
4242+ * service worker message.
4343+ */
4444+ minCompatVersion?: string
4545+ }
3646}
37473848const DEFAULT_PWA_CONFIG: CivilityConfig = {
···11-export * from './state.ts'
22-export * from './storage.ts'
33-44-export { default as State } from './state.ts'
55-export { default as Storage } from './storage.ts'
+1-1
packages/store/state.ts
···2424 * State Class
2525 * @example Basic Usage (See more in state.test.ts)
2626 * ```ts
2727- * import State from '@inro/simple-tools/state'
2727+ * import { State } from '@civility/store'
2828 *
2929 * class Counter extends State<{ count: number }> {
3030 * constructor(count: number = 0) {
+1-1
packages/store/storage.ts
···253253 *
254254 * @example
255255 * ```ts
256256- * import LocalStorage from '@inro/simple-tools/storage/local-storage'
256256+ * import LocalStorage from '@civility/store/local-storage'
257257 *
258258 * const store = new LocalStorage<{ count: number } | null>({
259259 * name: 'count',
+1-1
packages/store/storage/deno_fs_storage.ts
···1010 * @example
1111 * ```ts
1212 * import { Todo } from '@inro/simple-tools/todolist'
1313- * import DenoFsStorage from '@inro/simple-tools/storage/deno-fs'
1313+ * import DenoFsStorage from '@civility/store/deno-fs'
1414 *
1515 * const storage = new DenoFsStorage<Todo[]>({
1616 * name: 'todos',
+1-1
packages/store/storage/index_db_storage.ts
···66/**
77 * A mechanism for using IndexedDB as a Storage instance.
88 * ```ts
99- * import IndexDBStorage from '@inro/simple-tools/storage/idb'
99+ * import IndexDBStorage from '@civility/store/idb'
1010 *
1111 * const storage = new IndexDBStorage<{ data: string[] }>({
1212 * name: 'myData',