@thigasdevelopment/luam 0.19.3 → 0.19.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/README.md +11 -5
- package/luam.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -309,11 +309,17 @@ pnpm test
|
|
|
309
309
|
pnpm build
|
|
310
310
|
```
|
|
311
311
|
|
|
312
|
-
|
|
313
|
-
and run `pnpm typecheck && pnpm test` before
|
|
314
|
-
TypeScript only, strict, no `any`, no comments inside code, 4-space
|
|
315
|
-
single quotes, kebab-case file names, path aliases instead of `../`
|
|
316
|
-
barrel files, everything in English.
|
|
312
|
+
Fork, open the pull request against `develop`, add a fixture and a snapshot for
|
|
313
|
+
new language behaviour, and run `pnpm typecheck && pnpm test` before sending it.
|
|
314
|
+
House style: TypeScript only, strict, no `any`, no comments inside code, 4-space
|
|
315
|
+
indentation, single quotes, kebab-case file names, path aliases instead of `../`
|
|
316
|
+
imports, no barrel files, everything in English.
|
|
317
|
+
|
|
318
|
+
[CONTRIBUTING.md](CONTRIBUTING.md) is the full contract — the Node and Lua 5.1
|
|
319
|
+
requirements, the command that reproduces each required check, and what happens
|
|
320
|
+
to a pull request from a fork. Conduct is in
|
|
321
|
+
[CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md). A vulnerability is reported privately
|
|
322
|
+
through [SECURITY.md](SECURITY.md), never as an issue.
|
|
317
323
|
|
|
318
324
|
The manual lives in [`docs/`](docs/) — `pnpm docs:dev` to preview,
|
|
319
325
|
`pnpm docs:verify` before pushing. English is the source locale and pt-BR is
|
package/luam.mjs
CHANGED
|
@@ -6762,7 +6762,7 @@ import { tmpdir } from "node:os";
|
|
|
6762
6762
|
import { join as join2 } from "node:path";
|
|
6763
6763
|
|
|
6764
6764
|
// src/cli/version.ts
|
|
6765
|
-
var VERSION = true ? "0.19.
|
|
6765
|
+
var VERSION = true ? "0.19.5" : "0.0.0-dev";
|
|
6766
6766
|
var PROGRAM_NAME = "luam";
|
|
6767
6767
|
var PROGRAM_DESCRIPTION = "luam \u2014 the Luam compiler for Multi Theft Auto resources.";
|
|
6768
6768
|
|