Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joelseq/linkstowr-extension
https://github.com/joelseq/linkstowr-extension
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/joelseq/linkstowr-extension
- Owner: joelseq
- Created: 2023-07-15T06:26:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-15T00:09:04.000Z (about 1 year ago)
- Last Synced: 2024-11-30T08:52:15.753Z (about 1 month ago)
- Language: Svelte
- Size: 195 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LinkStowr Extension
This is the repo for the Chrome Extension for [Obsidian LinkStowr](https://github.com/joelseq/obsidian-linkstowr).
## Development
Install dependencies:
```
npm install
```OR
```
pnpm install
```### Start the local development server for the extension
```
npm run dev
```OR
```
pnpm dev
```This will create a `dist/` folder with the contents of the extension which you can load unpacked into a Chromium based browser.
### To run the test suite
To run it once:
```
pnpm test
```To run it in watch mode:
```
pnpm test:watch
```### Production build
To get a production bundled version of the extension:
```
pnpm build
```If you would like a zipped version of the extension, you can run:
```
pnpm pre:publish
```
This will create a zip of the extension and place it in the `out/` directory.