@pactflow/drift 2603.0.1-beta → 2603.0.1-beta2

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 +5 -6
  2. package/package.json +7 -2
package/README.md CHANGED
@@ -1,18 +1,17 @@
1
- # drift-npm
1
+ # Drift
2
+
3
+ https://pactflow.github.io/drift-docs/
2
4
 
3
5
  This package wraps the drift CLI for your platform. After installing, the `drift` command will be available in your local node_modules/.bin directory.
4
6
 
7
+
5
8
  ## Usage
6
9
 
7
10
  ```
8
11
  npm install @pactflow/drift
9
- npx drift --help
12
+ npx @pactflow/drift --help
10
13
  ```
11
14
 
12
- ## How it works
13
- - On install, downloads the correct binary for your OS/arch from https://download.pactflow.io/drift/{version}/
14
- - No JS API is exported; only the CLI is available
15
-
16
15
  ## Supported platforms
17
16
  - linux-aarch64
18
17
  - linux-x86_64
package/package.json CHANGED
@@ -1,9 +1,14 @@
1
1
  {
2
2
  "name": "@pactflow/drift",
3
- "version": "2603.0.1-beta",
3
+ "version": "2603.0.1-beta2",
4
4
  "description": "Wraps the drift CLI for your platform.",
5
5
  "bin": {
6
- "drift": "bin/drift"
6
+ "drift": "bin/drift",
7
+ "drift-verifier": "bin/drift-verifier",
8
+ "drift-check-version": "bin/drift-check-version",
9
+ "drift-repl": "bin/drift-repl",
10
+ "drift-versions": "bin/drift-versions",
11
+ "drift-plugins": "bin/drift-plugins"
7
12
  },
8
13
  "scripts": {
9
14
  "postinstall": "node scripts/postinstall.js",