@evident-ai/runner-synchroniser 0.1.1-dev.0d89dd3 → 0.1.1-dev.7568241

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 +19 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -32,11 +32,25 @@ npx @evident-ai/runner-synchroniser@dev env
32
32
  `dist/cli.js` is a single self-contained ESM bundle with **no runtime dependencies** —
33
33
  the AWS SDK is bundled at build time, so installing it pulls nothing else in.
34
34
 
35
- > Publishing is being rolled out (#612). The `dev` tag is published on every merge to
36
- > `main` that touches this package; the first publish is a human bootstrap (#694), and
37
- > the `latest`-on-release path is not wired up yet. The Fargate runner image installs
38
- > the `dev`-tagged package (`ARG RUNNER_SYNCHRONISER_VERSION=dev`); the MicroVM still
39
- > builds the bundle from source and is not expected to change.
35
+ ### Versioning
36
+
37
+ The package's version **tracks the product release version**, exactly like
38
+ `@evident-ai/cli`. `latest` is published on a product release, at the release
39
+ version. `dev` is published on every merge to `main` that touches this package or
40
+ the root `package.json`, at `<root major>.<minor>.<patch+1>-dev.<sha>`, so `dev`
41
+ stays strictly ahead of `latest`.
42
+
43
+ The version committed in this package's `package.json` is **vestigial** — CI
44
+ overwrites it before every publish. This is why `latest` jumped straight from
45
+ `0.1.0` to `3.x.y`: the `0.1.x` line predates the policy, not a missing
46
+ major-version story, and because npm publishes are immutable that jump is
47
+ permanent.
48
+
49
+ The two consumers still differ in how they get the binary: the Fargate runner
50
+ image installs the published package
51
+ (`ARG RUNNER_SYNCHRONISER_VERSION=dev`, resolved to a concrete version by the
52
+ deploy workflow); the MicroVM still builds it from source and reads no npm
53
+ version at all.
40
54
 
41
55
  ## Commands
42
56
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evident-ai/runner-synchroniser",
3
- "version": "0.1.1-dev.0d89dd3",
3
+ "version": "0.1.1-dev.7568241",
4
4
  "description": "Restores and syncs the Evident runner's OpenCode credential stores (and litestream config) to an object store, so a runner survives task replacement with almost no state loss.",
5
5
  "type": "module",
6
6
  "main": "./dist/cli.js",