@stacksjs/lint 0.70.170 → 0.70.172
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/index.d.ts +8 -0
- package/dist/index.js +2 -0
- package/package.json +4 -2
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// Stacks lints and formats with pickier, never eslint. This package is the
|
|
2
|
+
// framework-facing name for that: it re-exports pickier's public API so app
|
|
3
|
+
// and framework code can `import { runLint } from '@stacksjs/lint'` without
|
|
4
|
+
// pinning the underlying tool at every call site. pickier is a real dependency
|
|
5
|
+
// here (not a better-dx dev tool) because this package imports it at runtime,
|
|
6
|
+
// and `frameworkExternal()` keeps it out of the bundle so it resolves from the
|
|
7
|
+
// consumer's node_modules.
|
|
8
|
+
export * from 'pickier';
|
package/dist/index.js
ADDED
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/lint",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"
|
|
5
|
-
"version": "0.70.170",
|
|
4
|
+
"version": "0.70.172",
|
|
6
5
|
"description": "The Stacks way to lint.",
|
|
7
6
|
"author": "Chris Breuer",
|
|
8
7
|
"contributors": [
|
|
@@ -53,6 +52,9 @@
|
|
|
53
52
|
"typecheck": "bun tsc --noEmit",
|
|
54
53
|
"prepublishOnly": "bun run build"
|
|
55
54
|
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"pickier": "^0.1.40"
|
|
57
|
+
},
|
|
56
58
|
"devDependencies": {
|
|
57
59
|
"better-dx": "^0.2.17"
|
|
58
60
|
},
|