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 +1 -1
- package/package.json +1 -1
- package/test/run-regression.mjs +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
package/test/run-regression.mjs
CHANGED
|
@@ -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
|
|
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');
|