@delance/runtime 2026.2.1 → 2026.2.102
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 +28 -28
- package/dist/langserver.cjs +1 -1
- package/install.mjs +6063 -80
- package/install.mjs.map +7 -0
- package/main.mjs +7 -0
- package/main.mjs.map +7 -0
- package/package.json +21 -24
- package/langserver.cjs +0 -3
- package/utils.mjs +0 -122
package/README.md
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
[][jsr]
|
|
2
2
|
[][license]
|
|
3
3
|
[][builds]
|
|
4
|
-

|
|
5
|
+
|
|
6
|
+
# @delance/runtime
|
|
5
7
|
|
|
6
|
-
@delance/runtime
|
|
7
|
-
================
|
|
8
8
|
The language server runtime of [delance].
|
|
9
9
|
|
|
10
10
|
## Usage
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
delance-langserver --stdio
|
|
13
13
|
|
|
14
14
|
## Contributing
|
|
15
15
|
|
|
16
16
|
See [@delance/builder](https://git.sr.ht/~self/delance-builder#contributing).
|
|
17
17
|
|
|
18
|
-
Ensure linting and type checking passes,
|
|
19
|
-
|
|
18
|
+
Ensure linting and type checking passes, and send your patches to
|
|
19
|
+
<~self/delance-devel@lists.sr.ht>.
|
|
20
20
|
|
|
21
|
-
You shall sign off your contribution with a `Signed-off-by` tag appended to
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
You shall sign off your contribution with a `Signed-off-by` tag appended to the
|
|
22
|
+
log message of the patch or the tip of a Git branch containing your
|
|
23
|
+
contribution.
|
|
24
24
|
|
|
25
25
|
By contributing, you agree to both the [license] and the terms below:
|
|
26
26
|
|
|
@@ -45,10 +45,10 @@ By contributing, you agree to both the [license] and the terms below:
|
|
|
45
45
|
it.
|
|
46
46
|
|
|
47
47
|
(d) I understand and agree that this project and the contribution
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
48
|
+
are public and that a record of the contribution (including all
|
|
49
|
+
personal information I submit with it, including my sign-off) is
|
|
50
|
+
maintained indefinitely and may be redistributed consistent with
|
|
51
|
+
this project or the open source license(s) involved.
|
|
52
52
|
|
|
53
53
|
## But wait…
|
|
54
54
|
|
|
@@ -56,29 +56,29 @@ By contributing, you agree to both the [license] and the terms below:
|
|
|
56
56
|
|
|
57
57
|
**tl;dr: yes.** You choose to break the binding agreement of the original
|
|
58
58
|
software, but this repo itself does not violate any rights of its corresponding
|
|
59
|
-
copyright authors: it's a standalone piece of software that is not tied to,
|
|
60
|
-
|
|
59
|
+
copyright authors: it's a standalone piece of software that is not tied to, nor
|
|
60
|
+
redistributes any other particular project in the question.
|
|
61
61
|
|
|
62
62
|
## License
|
|
63
63
|
|
|
64
64
|
SPDX-License-Identifier: 0BSD
|
|
65
65
|
|
|
66
|
-
|
|
66
|
+
BSD Zero Clause License
|
|
67
67
|
|
|
68
|
-
|
|
68
|
+
Copyright (c) 2023 Zephyr Lykos
|
|
69
69
|
|
|
70
|
-
|
|
71
|
-
|
|
70
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
71
|
+
purpose with or without fee is hereby granted.
|
|
72
72
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
73
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
74
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
75
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
76
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
77
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
78
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
79
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
80
80
|
|
|
81
81
|
[delance]: https://sr.ht/~self/delance
|
|
82
|
-
[
|
|
82
|
+
[jsr]: https://jsr.io/@delance/runtime
|
|
83
83
|
[builds]: https://builds.sr.ht/~self/delance-runtime
|
|
84
84
|
[license]: ./LICENSE
|
package/dist/langserver.cjs
CHANGED