@nsis/dent-cli 0.4.1 → 0.4.2
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
|
@@ -14,11 +14,15 @@ This is a TypeScript application that depends on a [NodeJS](https://nodejs.org)
|
|
|
14
14
|
|
|
15
15
|
### Installation
|
|
16
16
|
|
|
17
|
+
> [!TIP]
|
|
18
|
+
>
|
|
19
|
+
> If you don't use a JavaScript runtime such as Node.js, download a binary of the [latest version](/https://github.com/idleberg/node-dent-cli/releases/latest) for Windows.
|
|
20
|
+
|
|
17
21
|
You could install the `dent` CLI globally
|
|
18
22
|
|
|
19
23
|
```sh
|
|
20
24
|
$ npm install --global @nsis/dent-cli
|
|
21
|
-
$ dent --help
|
|
25
|
+
$ npx dent --help
|
|
22
26
|
```
|
|
23
27
|
|
|
24
28
|
### Single use
|
|
@@ -26,7 +30,7 @@ $ dent --help
|
|
|
26
30
|
Download and execute the latest version using [`npx`](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b).
|
|
27
31
|
|
|
28
32
|
```sh
|
|
29
|
-
$ npx dent --help
|
|
33
|
+
$ npx @nsis/dent-cli --help
|
|
30
34
|
```
|
|
31
35
|
|
|
32
36
|
### Options
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e={name:`@nsis/dent-cli`,version:`0.4.
|
|
1
|
+
var e={name:`@nsis/dent-cli`,version:`0.4.2`,description:`An opinionated code formatter for NSIS scripts`,license:`MIT`,scripts:{build:`tsdown`,dev:`tsdown --watch`,lint:`concurrently --prefix-colors blue,green,magenta npm:lint:*`,"lint:biome":`biome check`,"lint:e18e":`e18e-cli analyze`,prepack:`npm run build`,"publish:jsr":`deno publish`,"publish:npm":`np`,start:`npm run build -- --watch`,test:`echo "Tests pending" && exit 0`},files:[`bin/`,`LICENSE`,`README.md`],type:`module`,bin:{dent:`./bin/cli.mjs`},engines:{node:`>=20.0.0`},repository:{type:`git`,url:`git+https://github.com/idleberg/node-dent-cli.git`},keywords:[`nsis`,`formatter`],dependencies:{"@nsis/dent":`^0.6.1`,commander:`^14.0.3`,consola:`^3.4.2`,kleur:`^4.1.5`},devDependencies:{"@commitlint/cli":`^20.4.1`,"@commitlint/config-conventional":`^20.4.1`,"@idleberg/configs":`^0.4.2`,"@types/node":`^24.11.0`,concurrently:`^9.2.1`,np:`^11.0.2`,tsdown:`^0.21.0`,typescript:`^5.3.3`},pnpm:{onlyBuiltDependencies:[`lefthook`]},packageManager:`pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017`};export{e as default};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nsis/dent-cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "An opinionated code formatter for NSIS scripts",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"formatter"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@nsis/dent": "^0.
|
|
27
|
+
"@nsis/dent": "^0.6.1",
|
|
28
28
|
"commander": "^14.0.3",
|
|
29
29
|
"consola": "^3.4.2",
|
|
30
30
|
"kleur": "^4.1.5"
|