@dashadmin/dash-prettier 1.3.26 → 1.3.28
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 +36 -0
- package/package.json +1 -1
- package/package.json.npm_bak +0 -10
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# @dashadmin/dash-prettier
|
|
2
|
+
|
|
3
|
+
> Shared Prettier configuration for Dash.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
Centralised code-formatting rules for the monorepo.
|
|
8
|
+
|
|
9
|
+
## Key exports & features
|
|
10
|
+
|
|
11
|
+
- Reusable Prettier config
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# From the public npm registry
|
|
17
|
+
npm install @dashadmin/dash-prettier
|
|
18
|
+
|
|
19
|
+
# Or the local Verdaccio registry (unscoped)
|
|
20
|
+
npm install dash-prettier --registry http://localhost:4873
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
```json
|
|
26
|
+
// package.json
|
|
27
|
+
{ "prettier": "dash-prettier" }
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Development & publishing
|
|
31
|
+
|
|
32
|
+
This package is part of the **dash-frontend-core** monorepo. See [`DEVELOPMENT.md`](../../DEVELOPMENT.md) for the source-modification workflow, local Verdaccio publishing, npm publishing and version-bump policy.
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
_Part of the [Dash Framework](https://www.npmjs.com/org/dashadmin) · `@dashadmin` scope._
|
package/package.json
CHANGED