Compare commits
4 Commits
v1.2.0
...
b3fd092acf
| Author | SHA1 | Date | |
|---|---|---|---|
|
b3fd092acf
|
|||
|
cd349944cf
|
|||
|
6b434adde4
|
|||
|
a966df95f0
|
17
.gitea/workflows/test.yaml
Normal file
17
.gitea/workflows/test.yaml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
name: Test
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: pnpm/action-setup@v4
|
||||||
|
with:
|
||||||
|
version: 9
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 20
|
||||||
|
cache: 'pnpm'
|
||||||
|
- run: pnpm install
|
||||||
|
- run: pnpm test
|
||||||
@@ -26,8 +26,10 @@ It is written in TypeScript and compiled to a JavaScript module suitable for use
|
|||||||
- `dist/`: specific build artifacts. Do not edit files here directly.
|
- `dist/`: specific build artifacts. Do not edit files here directly.
|
||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
- Currently, no automated test suite is configured.
|
- **Framework:** `vitest`
|
||||||
- `pnpm test` will exit with an error.
|
- **Run tests:** `pnpm test`
|
||||||
|
- **Watch mode:** `pnpm run test:watch`
|
||||||
|
- **Location:** Tests are located in the `test/` directory.
|
||||||
|
|
||||||
## Contribution Guidelines
|
## Contribution Guidelines
|
||||||
- When adding new functionality, ensure proper types are exported in `src/types.d.ts` or within the module files.
|
- When adding new functionality, ensure proper types are exported in `src/types.d.ts` or within the module files.
|
||||||
|
|||||||
13
dist/places.d.ts
vendored
13
dist/places.d.ts
vendored
@@ -96,6 +96,19 @@ declare const listSchema: {
|
|||||||
};
|
};
|
||||||
readonly required: readonly ["id", "title", "placeRefs", "createdAt"];
|
readonly required: readonly ["id", "title", "placeRefs", "createdAt"];
|
||||||
};
|
};
|
||||||
|
/**
|
||||||
|
* Represents a List object.
|
||||||
|
*
|
||||||
|
* Core properties enforced by schema:
|
||||||
|
* - `id`: Unique identifier (slug)
|
||||||
|
* - `title`: Human readable title
|
||||||
|
* - `placeRefs`: Array of place references containing `id` and `geohash`
|
||||||
|
* - `createdAt`: ISO date string
|
||||||
|
*
|
||||||
|
* Optional properties:
|
||||||
|
* - `color`: Hex color code
|
||||||
|
* - `updatedAt`: ISO date string
|
||||||
|
*/
|
||||||
export type List = FromSchema<typeof listSchema> & {
|
export type List = FromSchema<typeof listSchema> & {
|
||||||
[key: string]: any;
|
[key: string]: any;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -7,3 +7,15 @@
|
|||||||
# Type Alias: List
|
# Type Alias: List
|
||||||
|
|
||||||
> **List** = `FromSchema`\<*typeof* `listSchema`\> & `object`
|
> **List** = `FromSchema`\<*typeof* `listSchema`\> & `object`
|
||||||
|
|
||||||
|
Represents a List object.
|
||||||
|
|
||||||
|
Core properties enforced by schema:
|
||||||
|
- `id`: Unique identifier (slug)
|
||||||
|
- `title`: Human readable title
|
||||||
|
- `placeRefs`: Array of place references containing `id` and `geohash`
|
||||||
|
- `createdAt`: ISO date string
|
||||||
|
|
||||||
|
Optional properties:
|
||||||
|
- `color`: Hex color code
|
||||||
|
- `updatedAt`: ISO date string
|
||||||
|
|||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@remotestorage/module-places",
|
"name": "@remotestorage/module-places",
|
||||||
"version": "1.2.0",
|
"version": "1.2.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@remotestorage/module-places",
|
"name": "@remotestorage/module-places",
|
||||||
"version": "1.2.0",
|
"version": "1.2.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"latlon-geohash": "^2.0.0",
|
"latlon-geohash": "^2.0.0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@remotestorage/module-places",
|
"name": "@remotestorage/module-places",
|
||||||
"version": "1.2.0",
|
"version": "1.2.1",
|
||||||
"description": "Manage favorite/saved places",
|
"description": "Manage favorite/saved places",
|
||||||
"homepage": "https://gitea.kosmos.org/raucao/remotestorage-module-places#remotestoragemodule-places",
|
"homepage": "https://gitea.kosmos.org/raucao/remotestorage-module-places#remotestoragemodule-places",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
@@ -55,6 +55,19 @@ const listSchema = {
|
|||||||
required: ['id', 'title', 'placeRefs', 'createdAt'],
|
required: ['id', 'title', 'placeRefs', 'createdAt'],
|
||||||
} as const;
|
} as const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a List object.
|
||||||
|
*
|
||||||
|
* Core properties enforced by schema:
|
||||||
|
* - `id`: Unique identifier (slug)
|
||||||
|
* - `title`: Human readable title
|
||||||
|
* - `placeRefs`: Array of place references containing `id` and `geohash`
|
||||||
|
* - `createdAt`: ISO date string
|
||||||
|
*
|
||||||
|
* Optional properties:
|
||||||
|
* - `color`: Hex color code
|
||||||
|
* - `updatedAt`: ISO date string
|
||||||
|
*/
|
||||||
export type List = FromSchema<typeof listSchema> & { [key: string]: any };
|
export type List = FromSchema<typeof listSchema> & { [key: string]: any };
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user