@peekling/preflight 0.1.0 → 0.1.1

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 (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -12,8 +12,8 @@ code. It is intended for development tools, tests, and CI.
12
12
  Install the runtime for the application and Preflight for development:
13
13
 
14
14
  ```sh
15
- npm install @peekling/runtime@0.1.0
16
- npm install --save-dev @peekling/preflight@0.1.0
15
+ npm install @peekling/runtime@0.1.1
16
+ npm install --save-dev @peekling/preflight@0.1.1
17
17
  ```
18
18
 
19
19
  `@peekling/preflight` declares the exact runtime version as a peer dependency.
@@ -42,7 +42,7 @@ const configuration = {
42
42
  const pack = {
43
43
  name: "preflight-example",
44
44
  displayName: "Preflight example",
45
- version: "0.1.0",
45
+ version: "0.1.1",
46
46
  license: "CC0-1.0",
47
47
  atlas: {
48
48
  src: "atlas.png",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@peekling/preflight",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Pure development-time validation for Peekling configuration and Packs",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "dependencies": {},
48
48
  "peerDependencies": {
49
- "@peekling/runtime": "0.1.0"
49
+ "@peekling/runtime": "0.1.1"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "tsc -b",
@@ -55,7 +55,7 @@
55
55
  "typecheck": "tsc -b --pretty false"
56
56
  },
57
57
  "devDependencies": {
58
- "@peekling/runtime": "0.1.0",
58
+ "@peekling/runtime": "0.1.1",
59
59
  "typescript": "^7.0.2"
60
60
  }
61
61
  }