@schemastore/csscomb 0.0.8 → 0.0.9

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.
Files changed (3) hide show
  1. package/README.md +22 -6
  2. package/index.d.ts +1 -1
  3. package/package.json +4 -4
package/README.md CHANGED
@@ -1,12 +1,28 @@
1
- # Installation
2
- > `npm install --save @schemastore/csscomb`
1
+ # Type definitions for csscomb
2
+
3
+ ## Installation
4
+
5
+ ```
6
+ npm i @schemastore/csscomb
7
+ yarn add @schemastore/csscomb
8
+ ```
9
+
10
+ ## Summary
3
11
 
4
- # Summary
5
12
  This package contains type definitions for csscomb.
6
13
 
7
- ## Details
8
- Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/csscomb.
14
+ ## Usage
15
+
16
+ ```ts
17
+ import * as csscomb from '@schemastore/csscomb';
18
+ ```
19
+
20
+ ## Note
21
+
22
+ The definitions were auto-generated by [schemastore-updater](https://github.com/ffflorian/schemastore-updater) using [`json-schema-to-typescript`](https://www.npmjs.com/package/json-schema-to-typescript).
9
23
 
10
24
  ## Additional Details
11
- * Last updated: Mon, Jan 23, 2023, 19:39:42 GMT
25
+
26
+ * [Schema source](https://github.com/SchemaStore/schemastore/tree/master/src/schemas/json/csscomb)
27
+ * Last updated: Fri, Jun 30, 2023, 21:03:59 GMT
12
28
  * Dependencies: none
package/index.d.ts CHANGED
@@ -133,5 +133,5 @@ export interface ACSSCombConfigSchema {
133
133
  * https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
134
134
  */
135
135
  "sort-order-fallback"?: string;
136
- [k: string]: unknown;
136
+ [k: string]: unknown | undefined;
137
137
  }
package/package.json CHANGED
@@ -7,8 +7,8 @@
7
7
  "name": "@schemastore/csscomb",
8
8
  "repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/csscomb",
9
9
  "scripts": {},
10
- "typesPublisherContentHash": "e56ea33797097d324156cd5831541ecc8fc0cdac171f46309db0f022ecca25b0",
10
+ "typeScriptVersion": "2.2",
11
11
  "types": "index.d.ts",
12
- "version": "0.0.8",
13
- "typeScriptVersion": "2.2"
14
- }
12
+ "typesPublisherContentHash": "914d9e014b1552b47759bf71895328a42dc2e964b187b38ddeecd18daeb0ef0f",
13
+ "version": "0.0.9"
14
+ }