Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jdmedlock/tabular-svelte-test
Test the tabular-svelte package
https://github.com/jdmedlock/tabular-svelte-test
Last synced: about 2 months ago
JSON representation
Test the tabular-svelte package
- Host: GitHub
- URL: https://github.com/jdmedlock/tabular-svelte-test
- Owner: jdmedlock
- Created: 2020-11-29T20:32:06.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-31T00:24:46.000Z (about 4 years ago)
- Last Synced: 2024-10-13T14:17:19.222Z (3 months ago)
- Language: JavaScript
- Size: 166 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tabular-svelte-test
## Overview
This repo is a test harness used to exercise the functionality of the
`tabular-svelte` npm package.## Installation
To support this testing objective the `tabular-svelte` repo must be linked
to rather than installed like one normally would for a normal npm package.From a terminal window follow these steps to install the `tabular-svelte` repo:
```
cd
git clone https://github.com/jdmedlock/tabular-svelte.git
cd tabular-svelte
npm i
npm link
```Next, install the `tabular-svelte-test` repo:
```
cd
git clone https://github.com/jdmedlock/tabular-svelte-test.git
cd tabular-svelte-testing
npm i
npm link
```The `npm link` commands above create a link between the two repos so that
`tabular-svelte-test` has access to the source code in `tabular-svelte`.
This allows changes to be made to `tabular-svelte` and tested locally before
they are published to npm.To start & run the `tabular-svelte-test` app enter the `npm run dev` command
from the terminal.