eyelang 0.1.11 → 1.1.12

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 CHANGED
@@ -45,7 +45,7 @@ console.log(result.stdout);
45
45
 
46
46
  ## Documentation
47
47
 
48
- - [Playground](playground.html)
48
+ - [Playground](https://eyereasoner.github.io/eyelang/playground)
49
49
  - [Guide](docs/guide.md)
50
50
  - [Language reference](docs/language-reference.md)
51
51
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eyelang",
3
- "version": "0.1.11",
3
+ "version": "1.1.12",
4
4
  "description": "A small Prolog-syntax-subset logic programming language for rules, goals, answers, and proofs.",
5
5
  "type": "module",
6
6
  "main": "./index.js",
@@ -623,7 +623,7 @@ function playgroundStaticIssues() {
623
623
  const html = fs.readFileSync(playgroundPath, 'utf8');
624
624
  const readme = fs.readFileSync(path.join(packageRoot, 'README.md'), 'utf8');
625
625
  if (!pkg.files?.includes('playground.html')) issues.push('package files must include playground.html');
626
- if (!readme.includes('[Playground](playground.html)')) issues.push('README must link to playground.html');
626
+ if (!readme.includes('[Playground](https://eyereasoner.github.io/eyelang/playground)')) issues.push('README must link to the GitHub Pages playground URL');
627
627
  if (!html.includes('<meta name="viewport" content="width=device-width, initial-scale=1">')) issues.push('missing mobile viewport meta');
628
628
  if (!html.includes('@media (max-width: 900px)') || !html.includes('main { grid-template-columns: 1fr; }')) {
629
629
  issues.push('playground must collapse the editor/output grid on tablet/mobile widths');