@grainulation/barn 1.0.1 → 1.1.1
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/CONTRIBUTING.md +1 -1
- package/README.md +1 -1
- package/bin/barn.js +1 -2
- package/package.json +1 -1
- package/public/index.html +1 -3
package/CONTRIBUTING.md
CHANGED
|
@@ -64,7 +64,7 @@ The key architectural principle: **templates are self-contained HTML with inline
|
|
|
64
64
|
|
|
65
65
|
- Zero dependencies. If you need something, write it or use Node built-ins.
|
|
66
66
|
- No transpilation. Ship what you write.
|
|
67
|
-
- ESM imports (`import`/`export`). Node
|
|
67
|
+
- ESM imports (`import`/`export`). Node 20+ required.
|
|
68
68
|
- Keep functions small. If a function needs a scroll, split it.
|
|
69
69
|
- No emojis in code, CLI output, or templates.
|
|
70
70
|
|
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
|
-
<a href="https://www.npmjs.com/package/@grainulation/barn"><img src="https://img.shields.io/npm/v/@grainulation/barn" alt="npm version"></a> <a href="https://www.npmjs.com/package/@grainulation/barn"><img src="https://img.shields.io/npm/dm/@grainulation/barn" alt="npm downloads"></a> <a href="https://github.com/grainulation/barn/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-green" alt="license"></a> <a href="https://nodejs.org"><img src="https://img.shields.io/node/v/@grainulation/barn" alt="node"></a> <a href="https://github.com/grainulation/barn/actions"><img src="https://github.com/grainulation/barn/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
|
|
6
|
+
<a href="https://www.npmjs.com/package/@grainulation/barn"><img src="https://img.shields.io/npm/v/@grainulation/barn?label=%40grainulation%2Fbarn" alt="npm version"></a> <a href="https://www.npmjs.com/package/@grainulation/barn"><img src="https://img.shields.io/npm/dm/@grainulation/barn" alt="npm downloads"></a> <a href="https://github.com/grainulation/barn/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-green" alt="license"></a> <a href="https://nodejs.org"><img src="https://img.shields.io/node/v/@grainulation/barn" alt="node"></a> <a href="https://github.com/grainulation/barn/actions"><img src="https://github.com/grainulation/barn/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
|
|
7
7
|
<a href="https://deepwiki.com/grainulation/barn"><img src="https://deepwiki.com/badge.svg" alt="Explore on DeepWiki"></a>
|
|
8
8
|
</p>
|
|
9
9
|
|
package/bin/barn.js
CHANGED
|
@@ -82,8 +82,7 @@ Options:
|
|
|
82
82
|
--version, -v Print version and exit
|
|
83
83
|
--verbose Enable verbose logging to stderr
|
|
84
84
|
|
|
85
|
-
Zero npm dependencies. Node built-in only
|
|
86
|
-
https://github.com/grainulation/barn`);
|
|
85
|
+
Zero npm dependencies. Node built-in only.`);
|
|
87
86
|
process.exit(0);
|
|
88
87
|
}
|
|
89
88
|
|
package/package.json
CHANGED
package/public/index.html
CHANGED
|
@@ -163,15 +163,13 @@ body {
|
|
|
163
163
|
<div class="welcome" id="barn-welcome"><h2>Barn</h2><div class="subtitle">Loading templates...</div></div>
|
|
164
164
|
</main>
|
|
165
165
|
<footer class="footer">
|
|
166
|
-
<span>barn v1.0.
|
|
166
|
+
<span>barn v1.0.1 -- @grainulation/barn</span>
|
|
167
167
|
<div class="footer-links">
|
|
168
168
|
<a href="http://localhost:9091">wheat</a>
|
|
169
169
|
<a href="http://localhost:9094">mill</a>
|
|
170
170
|
<a href="http://localhost:9095">silo</a>
|
|
171
171
|
<a href="http://localhost:9090">farmer</a>
|
|
172
172
|
<a href="http://localhost:9096">harvest</a>
|
|
173
|
-
<span style="color:var(--border)">·</span>
|
|
174
|
-
<a href="https://github.com/grainulation/barn" target="_blank" rel="noopener noreferrer">github</a>
|
|
175
173
|
</div>
|
|
176
174
|
</footer>
|
|
177
175
|
</div>
|