loopgen 0.1.0

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.
@@ -0,0 +1,13 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>loopgen</title>
7
+ <script type="module" crossorigin src="/assets/index-CIWs8r78.js"></script>
8
+ <link rel="stylesheet" crossorigin href="/assets/index-BrxUKxHo.css">
9
+ </head>
10
+ <body>
11
+ <div id="root"></div>
12
+ </body>
13
+ </html>
@@ -0,0 +1,20 @@
1
+ name: ci
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
+
9
+ jobs:
10
+ verify:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: actions/setup-node@v4
15
+ with:
16
+ node-version: 22
17
+ - run: npm ci
18
+ - run: npm run lint
19
+ - run: npm run test
20
+ - run: npm run build
@@ -0,0 +1,13 @@
1
+ # Loopgen demo webapp
2
+
3
+ This small fixture lets new loopgen users preview loop engineering without connecting a real project.
4
+
5
+ ## Scripts
6
+
7
+ - `npm run lint`
8
+ - `npm run test`
9
+ - `npm run build`
10
+
11
+ ## Demo scenario
12
+
13
+ The project has a tiny checkout helper, a focused unit test, and a GitHub Actions workflow so loopgen can infer practical maintenance, quality, delivery, knowledge, and cross-functional loops.