@simpleapps-com/augur-config 2.0.9 → 2.0.11
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/EXPORTS.md +70 -0
- package/llms.txt +15 -0
- package/package.json +4 -2
package/EXPORTS.md
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# @simpleapps-com/augur-config exports
|
|
2
|
+
|
|
3
|
+
Version: 2.0.9
|
|
4
|
+
|
|
5
|
+
> Auto-generated. Do not edit manually.
|
|
6
|
+
> Regenerate with: `pnpm run generate-exports`
|
|
7
|
+
|
|
8
|
+
Configuration presets. These are not TypeScript modules -- import the path directly.
|
|
9
|
+
|
|
10
|
+
### `@simpleapps-com/augur-config/eslint`
|
|
11
|
+
|
|
12
|
+
```js
|
|
13
|
+
import config from "@simpleapps-com/augur-config/eslint";
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
### `@simpleapps-com/augur-config/eslint/next`
|
|
17
|
+
|
|
18
|
+
```js
|
|
19
|
+
import config from "@simpleapps-com/augur-config/eslint/next";
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### `@simpleapps-com/augur-config/prettier`
|
|
23
|
+
|
|
24
|
+
```js
|
|
25
|
+
import config from "@simpleapps-com/augur-config/prettier";
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### `@simpleapps-com/augur-config/prettier/next`
|
|
29
|
+
|
|
30
|
+
```js
|
|
31
|
+
import config from "@simpleapps-com/augur-config/prettier/next";
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### `@simpleapps-com/augur-config/tsconfig/base`
|
|
35
|
+
|
|
36
|
+
tsconfig preset. Extend in your tsconfig.json:
|
|
37
|
+
|
|
38
|
+
```json
|
|
39
|
+
{ "extends": "@simpleapps-com/augur-config/tsconfig/base" }
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### `@simpleapps-com/augur-config/tsconfig/react`
|
|
43
|
+
|
|
44
|
+
tsconfig preset. Extend in your tsconfig.json:
|
|
45
|
+
|
|
46
|
+
```json
|
|
47
|
+
{ "extends": "@simpleapps-com/augur-config/tsconfig/react" }
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### `@simpleapps-com/augur-config/tsconfig/react-native`
|
|
51
|
+
|
|
52
|
+
tsconfig preset. Extend in your tsconfig.json:
|
|
53
|
+
|
|
54
|
+
```json
|
|
55
|
+
{ "extends": "@simpleapps-com/augur-config/tsconfig/react-native" }
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### `@simpleapps-com/augur-config/tsconfig/next`
|
|
59
|
+
|
|
60
|
+
tsconfig preset. Extend in your tsconfig.json:
|
|
61
|
+
|
|
62
|
+
```json
|
|
63
|
+
{ "extends": "@simpleapps-com/augur-config/tsconfig/next" }
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
### `@simpleapps-com/augur-config/lighthouse`
|
|
67
|
+
|
|
68
|
+
```js
|
|
69
|
+
import config from "@simpleapps-com/augur-config/lighthouse";
|
|
70
|
+
```
|
package/llms.txt
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# @simpleapps-com/augur-config
|
|
2
|
+
|
|
3
|
+
> Shared tooling configuration presets for Augur ecommerce sites
|
|
4
|
+
|
|
5
|
+
Version: 2.0.9
|
|
6
|
+
|
|
7
|
+
- config preset: @simpleapps-com/augur-config/eslint
|
|
8
|
+
- config preset: @simpleapps-com/augur-config/eslint/next
|
|
9
|
+
- config preset: @simpleapps-com/augur-config/prettier
|
|
10
|
+
- config preset: @simpleapps-com/augur-config/prettier/next
|
|
11
|
+
- tsconfig preset: @simpleapps-com/augur-config/tsconfig/base
|
|
12
|
+
- tsconfig preset: @simpleapps-com/augur-config/tsconfig/react
|
|
13
|
+
- tsconfig preset: @simpleapps-com/augur-config/tsconfig/react-native
|
|
14
|
+
- tsconfig preset: @simpleapps-com/augur-config/tsconfig/next
|
|
15
|
+
- config preset: @simpleapps-com/augur-config/lighthouse
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simpleapps-com/augur-config",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.11",
|
|
4
4
|
"description": "Shared tooling configuration presets for Augur ecommerce sites",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -21,7 +21,9 @@
|
|
|
21
21
|
"./lighthouse": "./src/lighthouse.js"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
|
-
"src"
|
|
24
|
+
"src",
|
|
25
|
+
"EXPORTS.md",
|
|
26
|
+
"llms.txt"
|
|
25
27
|
],
|
|
26
28
|
"dependencies": {
|
|
27
29
|
"@next/eslint-plugin-next": "^15.0.0",
|