lumos-language 1.0.3 → 1.0.5
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/.github/workflows/release-package.yml +33 -0
- package/LICENSE +11 -35
- package/README.md +2 -2
- package/index.html +17 -3
- package/package.json +4 -1
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
name: Release lumos-language
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [created]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
build:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
steps:
|
|
11
|
+
- uses: actions/checkout@v4
|
|
12
|
+
- uses: actions/setup-node@v4
|
|
13
|
+
with:
|
|
14
|
+
node-version: 20
|
|
15
|
+
- run: npm ci
|
|
16
|
+
- run: npm test
|
|
17
|
+
|
|
18
|
+
publish-gpr:
|
|
19
|
+
needs: build
|
|
20
|
+
runs-on: ubuntu-latest
|
|
21
|
+
permissions:
|
|
22
|
+
packages: write
|
|
23
|
+
contents: read
|
|
24
|
+
steps:
|
|
25
|
+
- uses: actions/checkout@v4
|
|
26
|
+
- uses: actions/setup-node@v4
|
|
27
|
+
with:
|
|
28
|
+
node-version: 20
|
|
29
|
+
registry-url: https://npm.pkg.github.com/
|
|
30
|
+
- run: npm ci
|
|
31
|
+
- run: npm publish
|
|
32
|
+
env:
|
|
33
|
+
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,13 @@
|
|
|
1
|
-
The LICENSE file for any project gives credit to the creator/author of the
|
|
2
|
-
project, copyright information for the project, and the legal terms under
|
|
3
|
-
which it's being shared. In other words, this is us using an MIT license to
|
|
4
|
-
say "we wrote this and you can do whatever you want with it."
|
|
5
|
-
|
|
6
|
-
******************************************************************************
|
|
7
|
-
~glitch-hello-website
|
|
8
|
-
******************************************************************************
|
|
9
1
|
MIT License
|
|
10
2
|
|
|
11
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2025 Hirotoshi Uchida
|
|
12
4
|
|
|
13
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
14
|
-
of
|
|
15
|
-
in the Software without restriction, including without
|
|
16
|
-
to use, copy, modify, merge, publish, distribute,
|
|
17
|
-
copies of the Software, and to permit persons to whom
|
|
18
|
-
furnished to do so, subject to the following conditions:
|
|
6
|
+
of the "lumos-language" software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including without
|
|
8
|
+
limitation the rights to use, copy, modify, merge, publish, distribute,
|
|
9
|
+
sublicense, and/or sell copies of the Software, and to permit persons to whom
|
|
10
|
+
the Software is furnished to do so, subject to the following conditions:
|
|
19
11
|
|
|
20
12
|
The above copyright notice and this permission notice shall be included in all
|
|
21
13
|
copies or substantial portions of the Software.
|
|
@@ -28,27 +20,11 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
28
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
29
21
|
SOFTWARE.
|
|
30
22
|
|
|
23
|
+
---
|
|
31
24
|
|
|
25
|
+
Third-Party Component:
|
|
32
26
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
THIRD-PARTY SOFTWARE
|
|
37
|
-
This is all the software we used to build this starter project. All of these
|
|
38
|
-
licenses are compatible with the license above. We've included links so you
|
|
39
|
-
can learn more if you want.
|
|
40
|
-
|
|
41
|
-
1. HK Grotesk: The font we're using.
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
******************************************************************************
|
|
45
|
-
1. HK Grotesk
|
|
46
|
-
URL: https://hanken.co/products/hk-grotesk
|
|
47
|
-
******************************************************************************
|
|
48
|
-
HK Grotesk was designed by Hanken Design Co. It is shared using a SIL OFL
|
|
49
|
-
license. Full license text can be found at:
|
|
50
|
-
|
|
27
|
+
The font “HK Grotesk” used in this project is designed by Hanken Design Co.
|
|
28
|
+
and is licensed separately under the SIL Open Font License (OFL). Complete
|
|
29
|
+
terms for HK Grotesk can be found here:
|
|
51
30
|
https://hanken.co/pages/web-fonts-eula
|
|
52
|
-
******************************************************************************
|
|
53
|
-
END, HK Grotesk
|
|
54
|
-
******************************************************************************
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Lumos
|
|
1
|
+
# Lumos Language
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/lumos-language)
|
|
4
4
|
|
|
@@ -37,7 +37,7 @@ Lumos is influenced by
|
|
|
37
37
|
- Conditional branch:
|
|
38
38
|
<ul>
|
|
39
39
|
<li><code>if (x == 10) { let status = "Done" } else { let status = "Not yet" }</code></li>
|
|
40
|
-
<li><code>if (
|
|
40
|
+
<li><code>if (x == 10) { let status = "Done" } elsif (x == 20) { let status = "Already" } else { let status = "Not yet" }</code></li>
|
|
41
41
|
</ul>
|
|
42
42
|
- Break and Continue:
|
|
43
43
|
<ul>
|
package/index.html
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<html>
|
|
2
2
|
<head>
|
|
3
3
|
<meta charset="UTF-8" />
|
|
4
|
-
<title>Lumos</title>
|
|
4
|
+
<title>Lumos Language</title>
|
|
5
5
|
<link rel="apple-touch-icon" sizes="180x180" href="https://cdn.glitch.global/a6e15949-0cae-4ce8-a653-5883a6d0adc5/Lumos.png" />
|
|
6
6
|
<link rel="icon" type="image/x-icon" href="https://cdn.glitch.global/a6e15949-0cae-4ce8-a653-5883a6d0adc5/Lumos.ico" />
|
|
7
7
|
<style>
|
|
@@ -57,15 +57,25 @@
|
|
|
57
57
|
#compileButton:hover {
|
|
58
58
|
background: #005f9e;
|
|
59
59
|
}
|
|
60
|
-
h5 {
|
|
60
|
+
h5, #logo {
|
|
61
61
|
text-align: center;
|
|
62
62
|
}
|
|
63
|
+
.github {
|
|
64
|
+
mix-blend-mode: darken;
|
|
65
|
+
}
|
|
66
|
+
.npm {
|
|
67
|
+
mix-blend-mode: color;
|
|
68
|
+
}
|
|
69
|
+
.github, .npm {
|
|
70
|
+
width: 100px;
|
|
71
|
+
height: 100px;
|
|
72
|
+
}
|
|
63
73
|
</style>
|
|
64
74
|
</head>
|
|
65
75
|
<body>
|
|
66
76
|
<div class="header">
|
|
67
77
|
<img src="https://cdn.glitch.global/a6e15949-0cae-4ce8-a653-5883a6d0adc5/Lumos.png?v=1748865997035" />
|
|
68
|
-
<h1>Lumos</h1>
|
|
78
|
+
<h1>Lumos Language</h1>
|
|
69
79
|
</div>
|
|
70
80
|
<input type="text" id="input" placeholder="Enter command..." />
|
|
71
81
|
<button id="compileButton">Compile</button>
|
|
@@ -265,6 +275,10 @@
|
|
|
265
275
|
});
|
|
266
276
|
</script>
|
|
267
277
|
<footer>
|
|
278
|
+
<div id="logo">
|
|
279
|
+
<a href="https://github.com/Uchida16104/Lumos-Language"><img class="github" src="https://icon2.cleanpng.com/20180530/ywr/kisspng-github-computer-icons-directory-5b0ec64b102792.7107546015276949230662.jpg" /></a>
|
|
280
|
+
<a href="https://www.npmjs.com/package/lumos-language"><img class="npm" src="https://icon2.cleanpng.com/20180618/hxa/aa6nx3pxr.webp" /></a>
|
|
281
|
+
</div>
|
|
268
282
|
<h5>2025 © Hirotoshi Uchida</h5>
|
|
269
283
|
</footer>
|
|
270
284
|
</body>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lumos-language",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Lumos - Interactive CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "git+https://github.com/Uchida16104/Lumos.git"
|
|
12
12
|
},
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"@Uchida16104:registry": "https://npm.pkg.github.com"
|
|
15
|
+
},
|
|
13
16
|
"bugs": {
|
|
14
17
|
"url": "https://github.com/Uchida16104/Lumos/issues"
|
|
15
18
|
},
|