@absolutejs/absolute 0.19.0-beta.814 → 0.19.0-beta.816
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/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/build.js.map +2 -2
- package/dist/cli/index.js +127 -42
- package/dist/index.js.map +2 -2
- package/dist/src/cli/scripts/eslint.d.ts +15 -0
- package/package.json +1 -1
|
@@ -1 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Run ESLint with sensible absolutejs defaults.
|
|
3
|
+
*
|
|
4
|
+
* - Caching: enabled by default, cache file location overridable via
|
|
5
|
+
* the `ABSOLUTE_ESLINT_CACHE` env var (default: `.absolutejs/eslint-cache`).
|
|
6
|
+
* - Implicit lint target: `.` is appended only when the user hasn't
|
|
7
|
+
* supplied a positional path of their own. So `bun lint src/backend/`
|
|
8
|
+
* lints just that directory — not the whole repo plus `src/backend/`.
|
|
9
|
+
* - `--clear-cache`: handled by this script (not passed to ESLint),
|
|
10
|
+
* wipes the cache file and exits cleanly.
|
|
11
|
+
*
|
|
12
|
+
* NOTE: this script does NOT pass `--fix`. Autofixing is opt-in via the
|
|
13
|
+
* standard ESLint flag — `bun lint --fix` works because user args are
|
|
14
|
+
* spread through to the underlying `bun eslint` invocation.
|
|
15
|
+
*/
|
|
1
16
|
export declare const eslint: (args: string[]) => Promise<void>;
|
package/package.json
CHANGED