@form8ion/gitea-workflows 1.0.0-beta.4 → 1.0.0

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/README.md CHANGED
@@ -25,6 +25,7 @@ form8ion plugin for managing Gitea workflows
25
25
 
26
26
  [![npm][npm-badge]][npm-link]
27
27
  [![license][license-badge]][license-link]
28
+ ![node][node-badge]
28
29
 
29
30
  <!--consumer-badges end -->
30
31
 
@@ -112,3 +113,5 @@ $ npm test
112
113
  [license-link]: LICENSE
113
114
 
114
115
  [license-badge]: https://img.shields.io/github/license/form8ion/gitea-workflows.svg?logo=opensourceinitiative
116
+
117
+ [node-badge]: https://img.shields.io/node/v/@form8ion/gitea-workflows?logo=node.js
package/package.json CHANGED
@@ -2,8 +2,11 @@
2
2
  "name": "@form8ion/gitea-workflows",
3
3
  "description": "form8ion plugin for managing Gitea workflows",
4
4
  "license": "MIT",
5
- "version": "1.0.0-beta.4",
5
+ "version": "1.0.0",
6
6
  "type": "module",
7
+ "engines": {
8
+ "node": "^22.21.0 || >=24.12"
9
+ },
7
10
  "author": "Matt Travi <npm@travi.org> (https://matt.travi.org)",
8
11
  "repository": "form8ion/gitea-workflows",
9
12
  "bugs": "https://github.com/form8ion/gitea-workflows/issues",
@@ -14,6 +17,7 @@
14
17
  "scripts": {
15
18
  "pretest": "run-s build",
16
19
  "test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
20
+ "lint:engines": "ls-engines",
17
21
  "lint:gherkin": "gherkin-lint --config=.gherkin-lintrc.json",
18
22
  "lint:js": "eslint . --cache",
19
23
  "lint:js:fix": "run-s 'lint:js -- --fix'",
@@ -50,6 +54,9 @@
50
54
  "provenance": true
51
55
  },
52
56
  "packageManager": "npm@11.12.1+sha512.cdca14b85d647b3192028d02aadbe82d75f79a446aceea9874be98e6d768f20ebd3555770a48d0e9906106007877bbc690f715e9372f2e2dc644a3c3157fb14c",
57
+ "dependencies": {
58
+ "@form8ion/core": "^4.11.1"
59
+ },
53
60
  "devDependencies": {
54
61
  "@cucumber/cucumber": "12.7.0",
55
62
  "@form8ion/commitlint-config": "2.0.11",
@@ -63,6 +70,7 @@
63
70
  "gherkin-lint": "4.2.4",
64
71
  "husky": "9.1.7",
65
72
  "lockfile-lint": "5.0.0",
73
+ "ls-engines": "0.10.0",
66
74
  "mock-fs": "5.5.0",
67
75
  "npm-run-all2": "8.0.4",
68
76
  "publint": "0.3.18",
@@ -74,8 +82,5 @@
74
82
  "rollup-plugin-auto-external": "2.0.0",
75
83
  "vitest": "4.1.4",
76
84
  "vitest-when": "0.10.0"
77
- },
78
- "dependencies": {
79
- "@form8ion/core": "^4.11.1"
80
85
  }
81
86
  }
@@ -1,7 +0,0 @@
1
- import {assert, describe, it} from 'vitest';
2
-
3
- describe('canary', () => {
4
- it('should pass', () => {
5
- assert.isTrue(true);
6
- });
7
- });