Skip to content

Commit 0cdf0fa

Browse files
committed
I made it into an actual library!
By reading [ https://docs.platformio.org/en/latest/manifests/library-json/index.html#library-json ], writing `library.jsonc`, and running `pio pkg pack`.
1 parent 154f7ab commit 0cdf0fa

File tree

3 files changed

+30
-19
lines changed

3 files changed

+30
-19
lines changed

PerFileLogging-0.1.0.tar.gz

2.92 KB
Binary file not shown.

library.json

Lines changed: 0 additions & 19 deletions
This file was deleted.

library.jsonc

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "PerFileLogging",
3+
"version": "0.1.0",
4+
"description": "A header-library to assist with logging.",
5+
"keywords": [
6+
"logging",
7+
],
8+
"homepage": "https://github.com/Brahvim/PerFileLogging",
9+
"authors": [
10+
{
11+
"name": "Brahvim",
12+
"maintainer": true,
13+
}
14+
],
15+
"license": "MIT-0", // MIT without attribution!
16+
"repository": {
17+
"type": "git",
18+
"url": "https://github.com/Brahvim/PerFileLogging",
19+
},
20+
"frameworks": "arduino",
21+
"platforms": "*",
22+
"export": {
23+
"exclude": [
24+
".vscode",
25+
".gitignore",
26+
"library.properties",
27+
"compile_commands.json",
28+
],
29+
},
30+
}

0 commit comments

Comments
 (0)