@grid-is/agent-tools 0.2.0 → 0.2.2
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 +12 -0
- package/assets/FONT-LICENSES.md +22 -0
- package/assets/fonts/caladea/caladea-bold.ttf +0 -0
- package/assets/fonts/caladea/caladea-bolditalic.ttf +0 -0
- package/assets/fonts/caladea/caladea-italic.ttf +0 -0
- package/assets/fonts/caladea/caladea-regular.ttf +0 -0
- package/assets/fonts/carlito/carlito-bold.ttf +0 -0
- package/assets/fonts/carlito/carlito-bolditalic.ttf +0 -0
- package/assets/fonts/carlito/carlito-italic.ttf +0 -0
- package/assets/fonts/carlito/carlito-regular.ttf +0 -0
- package/assets/fonts/lora/lora-bold.ttf +0 -0
- package/assets/fonts/lora/lora-bolditalic.ttf +0 -0
- package/assets/fonts/lora/lora-italic.ttf +0 -0
- package/assets/fonts/lora/lora-regular.ttf +0 -0
- package/assets/fonts/merriweather/merriweather-bold.ttf +0 -0
- package/assets/fonts/merriweather/merriweather-bolditalic.ttf +0 -0
- package/assets/fonts/merriweather/merriweather-italic.ttf +0 -0
- package/assets/fonts/merriweather/merriweather-regular.ttf +0 -0
- package/assets/fonts/poppins/poppins-bold.ttf +0 -0
- package/assets/fonts/poppins/poppins-bolditalic.ttf +0 -0
- package/assets/fonts/poppins/poppins-italic.ttf +0 -0
- package/assets/fonts/poppins/poppins-regular.ttf +0 -0
- package/dist/index.js +167 -1
- package/dist/server.js +1 -1
- package/package.json +17 -4
- package/dist/src-QqBT-9Dl.js +0 -167
package/README.md
CHANGED
|
@@ -71,3 +71,15 @@ npm test # smoke test against test/fixtures/sample.xlsx
|
|
|
71
71
|
npm run typecheck
|
|
72
72
|
npm run gen:docs # regenerate the per-tool reference under docs/src/content/docs/tools/
|
|
73
73
|
```
|
|
74
|
+
|
|
75
|
+
## Releasing
|
|
76
|
+
|
|
77
|
+
Releases are managed with [changesets](https://github.com/changesets/changesets).
|
|
78
|
+
|
|
79
|
+
1. In each PR with a user-facing change, run `npx changeset`, pick the bump type,
|
|
80
|
+
and commit the generated file. Tooling-only PRs use `npx changeset add --empty`.
|
|
81
|
+
2. The Release workflow opens a "Version Packages" PR that bumps `package.json`,
|
|
82
|
+
writes `CHANGELOG.md`, and deletes the consumed changesets.
|
|
83
|
+
3. Merging that PR publishes to npm, tags the release, and creates a GitHub Release.
|
|
84
|
+
|
|
85
|
+
See [`.changeset/README.md`](.changeset/README.md) for the changeset file format.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Font licenses
|
|
2
|
+
|
|
3
|
+
The font files under `assets/fonts/` are redistributed unmodified from their
|
|
4
|
+
upstream projects. Copyright notices are taken from each font's embedded name
|
|
5
|
+
table.
|
|
6
|
+
|
|
7
|
+
## SIL Open Font License, Version 1.1 (https://scripts.sil.org/OFL)
|
|
8
|
+
|
|
9
|
+
- **Carlito** — Copyright (c) 2010-2013 by tyPoland Lukasz Dziedzic with
|
|
10
|
+
Reserved Font Name "Carlito".
|
|
11
|
+
- **Lora** — Copyright 2011 The Lora Project Authors
|
|
12
|
+
(https://github.com/cyrealtype/Lora-Cyrillic), with Reserved Font Name
|
|
13
|
+
"Lora".
|
|
14
|
+
- **Merriweather** — Copyright 2016 The Merriweather Project Authors
|
|
15
|
+
(https://github.com/EbenSorkin/Merriweather), with Reserved Font Name
|
|
16
|
+
"Merriweather".
|
|
17
|
+
- **Poppins** — Copyright 2020 The Poppins Project Authors
|
|
18
|
+
(https://github.com/itfoundry/Poppins).
|
|
19
|
+
|
|
20
|
+
## Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
|
|
21
|
+
|
|
22
|
+
- **Caladea** — Copyright (c) 2012 Huerta Tipografia.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|