@rcrsr/rill-cli 0.8.0 → 0.8.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.
package/dist/cli-check.js CHANGED
File without changes
package/dist/cli-eval.js CHANGED
File without changes
package/dist/cli-exec.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rcrsr/rill-cli",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "CLI tools for the rill scripting language",
5
5
  "license": "MIT",
6
6
  "author": "Andre Bremer",
@@ -17,16 +17,9 @@
17
17
  "rill-eval": "./dist/cli-eval.js",
18
18
  "rill-check": "./dist/cli-check.js"
19
19
  },
20
- "scripts": {
21
- "build": "tsc --build",
22
- "test": "vitest run",
23
- "typecheck": "tsc --noEmit",
24
- "lint": "eslint --config ../../eslint.config.js src/",
25
- "check": "pnpm run build && pnpm run test && pnpm run lint"
26
- },
27
20
  "dependencies": {
28
- "@rcrsr/rill": "workspace:^",
29
- "yaml": "^2.8.2"
21
+ "yaml": "^2.8.2",
22
+ "@rcrsr/rill": "^0.8.1"
30
23
  },
31
24
  "files": [
32
25
  "dist"
@@ -36,11 +29,18 @@
36
29
  "url": "git+https://github.com/rcrsr/rill.git",
37
30
  "directory": "packages/cli"
38
31
  },
39
- "homepage": "https://github.com/rcrsr/rill/tree/main/packages/cli#readme",
32
+ "homepage": "https://rill.run/docs/integration/cli-tools/",
40
33
  "bugs": {
41
34
  "url": "https://github.com/rcrsr/rill/issues"
42
35
  },
43
36
  "publishConfig": {
44
37
  "access": "public"
38
+ },
39
+ "scripts": {
40
+ "build": "tsc --build",
41
+ "test": "vitest run",
42
+ "typecheck": "tsc --noEmit",
43
+ "lint": "eslint --config ../../eslint.config.js src/",
44
+ "check": "pnpm run build && pnpm run test && pnpm run lint"
45
45
  }
46
- }
46
+ }