@absolutejs/absolute 0.19.0-beta.815 → 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 +17 -0
- package/dist/index.js.map +2 -2
- package/dist/src/cli/scripts/eslint.d.ts +1 -4
- package/package.json +1 -1
|
@@ -11,9 +11,6 @@
|
|
|
11
11
|
*
|
|
12
12
|
* NOTE: this script does NOT pass `--fix`. Autofixing is opt-in via the
|
|
13
13
|
* standard ESLint flag — `bun lint --fix` works because user args are
|
|
14
|
-
* spread through to the underlying `bun eslint` invocation.
|
|
15
|
-
* see files getting auto-fixed without `--fix` are typically running an
|
|
16
|
-
* editor extension (VS Code's `editor.codeActionsOnSave` is the usual
|
|
17
|
-
* suspect) — that's IDE behavior, not this CLI.
|
|
14
|
+
* spread through to the underlying `bun eslint` invocation.
|
|
18
15
|
*/
|
|
19
16
|
export declare const eslint: (args: string[]) => Promise<void>;
|
package/package.json
CHANGED