@tonguetoquill/collection 0.1.0 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +6 -3
- package/quills/usaf_memo/0.2.0/Quill.yaml +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
# @tonguetoquill/
|
|
1
|
+
# @tonguetoquill/collection
|
|
2
2
|
|
|
3
|
-
This package redistributes the core Quills and supporting templates from the [
|
|
3
|
+
This package redistributes the core Quills and supporting templates from the [TTQ Quills and Templates Collection](https://github.com/nibsbin/tonguetoquill-collection) for consumption in Node.js environments.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# npm
|
|
9
|
-
npm install @tonguetoquill/
|
|
9
|
+
npm install @tonguetoquill/collection
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
## Usage
|
|
@@ -18,7 +18,7 @@ You can use `QUILLS_DIR` with the `FileSystemSource` from the [`@quillmark/regis
|
|
|
18
18
|
```typescript
|
|
19
19
|
import { Quillmark } from '@quillmark/wasm';
|
|
20
20
|
import { QuillRegistry, FileSystemSource } from '@quillmark/registry';
|
|
21
|
-
import { QUILLS_DIR } from '@tonguetoquill/
|
|
21
|
+
import { QUILLS_DIR } from '@tonguetoquill/collection';
|
|
22
22
|
|
|
23
23
|
async function setupRegistry() {
|
|
24
24
|
const engine = new Quillmark();
|
package/package.json
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tonguetoquill/collection",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "git+https://github.com/nibsbin/tonguetoquill-collection.git"
|
|
7
|
+
},
|
|
4
8
|
"main": "index.js",
|
|
5
9
|
"types": "index.d.ts",
|
|
6
10
|
"exports": {
|
|
@@ -18,7 +22,6 @@
|
|
|
18
22
|
"type": "module",
|
|
19
23
|
"scripts": {
|
|
20
24
|
"update-subtrees": "node scripts/update-subtrees.mjs",
|
|
21
|
-
"lint": "tsc --noEmit",
|
|
22
25
|
"test": "echo \"No test specified\"",
|
|
23
26
|
"build": "echo \"No build specified\"",
|
|
24
27
|
"preversion": "npm test",
|
|
@@ -33,4 +36,4 @@
|
|
|
33
36
|
"dependencies": {
|
|
34
37
|
"@quillmark/registry": "^0.5.3"
|
|
35
38
|
}
|
|
36
|
-
}
|
|
39
|
+
}
|