@delance/builder 0.2.4 → 0.2.6
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 +11 -9
- package/dist/index.js +362 -214
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
[][
|
|
1
|
+
[][npm]
|
|
2
2
|
[][license]
|
|
3
3
|
[][builds]
|
|
4
|
-

|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
@delance/builder
|
|
7
|
+
================
|
|
8
8
|
A spear to the Python language server built with black magic.
|
|
9
9
|
|
|
10
10
|
**If you were trying to run the language server, see [@delance/runtime].**
|
|
@@ -12,12 +12,14 @@ A spear to the Python language server built with black magic.
|
|
|
12
12
|
## Usage
|
|
13
13
|
|
|
14
14
|
- API
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
```typescript
|
|
16
|
+
import run from '@delance/builder';
|
|
17
|
+
```
|
|
17
18
|
|
|
18
19
|
- CLI
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
```shell
|
|
21
|
+
bunx @delance/builder /path/to/extension/dist
|
|
22
|
+
```
|
|
21
23
|
|
|
22
24
|
## Contributing
|
|
23
25
|
|
|
@@ -88,6 +90,6 @@ SPDX-License-Identifier: 0BSD
|
|
|
88
90
|
PERFORMANCE OF THIS SOFTWARE.
|
|
89
91
|
|
|
90
92
|
[@delance/runtime]: https://npm.im/@delance/runtime
|
|
91
|
-
[
|
|
93
|
+
[npm]: https://npm.im/@delance/builder
|
|
92
94
|
[builds]: https://builds.sr.ht/~self/delance-builder?
|
|
93
95
|
[license]: ./LICENSE
|