@twin.org/background-task-scheduler 0.0.1-next.21 → 0.0.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/docs/changelog.md +14 -0
  2. package/package.json +38 -5
package/docs/changelog.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.0.1 (2025-07-07)
4
+
5
+
6
+ ### Features
7
+
8
+ * release to production ([7ce9896](https://github.com/twinfoundation/background-task/commit/7ce989659e6819f05655c86b1bda2a265af5d281))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/background-task-models bumped from ^0.0.0 to ^0.0.1
16
+
3
17
  ## [0.0.1-next.21](https://github.com/twinfoundation/background-task/compare/background-task-scheduler-v0.0.1-next.20...background-task-scheduler-v0.0.1-next.21) (2025-06-23)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/background-task-scheduler",
3
- "version": "0.0.1-next.21",
3
+ "version": "0.0.1",
4
4
  "description": "Background task scheduler",
5
5
  "repository": {
6
6
  "type": "git",
@@ -13,11 +13,44 @@
13
13
  "engines": {
14
14
  "node": ">=20.0.0"
15
15
  },
16
+ "scripts": {
17
+ "clean": "rimraf dist coverage docs/reference",
18
+ "build": "tsc",
19
+ "dev": "nodemon --watch src --ext ts --exec \"npm run build && npm run bundle:esm\"",
20
+ "test": "vitest --run --config ./vitest.config.ts --no-cache",
21
+ "coverage": "vitest --run --coverage --config ./vitest.config.ts --no-cache",
22
+ "bundle:esm": "rollup --config rollup.config.mjs --environment MODULE:esm",
23
+ "bundle:cjs": "rollup --config rollup.config.mjs --environment MODULE:cjs",
24
+ "bundle": "npm run bundle:esm && npm run bundle:cjs",
25
+ "docs:clean": "rimraf docs/reference",
26
+ "docs:generate": "typedoc",
27
+ "docs": "npm run docs:clean && npm run docs:generate",
28
+ "dist": "npm run clean && npm run build && npm run test && npm run bundle && npm run docs",
29
+ "dist:no-test": "npm run clean && npm run build && npm run bundle && npm run docs",
30
+ "prepare": "ts-patch install -s"
31
+ },
16
32
  "dependencies": {
17
- "@twin.org/background-task-models": "0.0.1-next.21",
18
- "@twin.org/core": "next",
19
- "@twin.org/logging-models": "next",
20
- "@twin.org/nameof": "next"
33
+ "@twin.org/background-task-models": "^0.0.1",
34
+ "@twin.org/core": "^0.0.1",
35
+ "@twin.org/nameof": "^0.0.1",
36
+ "@twin.org/logging-models": "^0.0.1"
37
+ },
38
+ "devDependencies": {
39
+ "@twin.org/nameof-transformer": "^0.0.1",
40
+ "@twin.org/nameof-vitest-plugin": "^0.0.1",
41
+ "@types/node": "24.0.1",
42
+ "@vitest/coverage-v8": "3.2.3",
43
+ "copyfiles": "2.4.1",
44
+ "dotenv": "16.5.0",
45
+ "rimraf": "6.0.1",
46
+ "rollup": "4.43.0",
47
+ "rollup-plugin-copy": "3.5.0",
48
+ "ts-patch": "3.3.0",
49
+ "nodemon": "3.1.10",
50
+ "typedoc": "0.28.5",
51
+ "typedoc-plugin-markdown": "4.6.4",
52
+ "typescript": "5.8.3",
53
+ "vitest": "3.2.3"
21
54
  },
22
55
  "main": "./dist/cjs/index.cjs",
23
56
  "module": "./dist/esm/index.mjs",