@getmikk/diagram-generator 1.9.1 → 2.0.10
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/CHANGELOG.md +55 -0
- package/package.json +32 -27
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# @getmikk/diagram-generator
|
|
2
|
+
|
|
3
|
+
## 2.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1217e39: chore: synchronize all packages to v2.0.1 and finalize release infrastructure.
|
|
8
|
+
- Updated dependencies [1217e39]
|
|
9
|
+
- @getmikk/core@2.0.4
|
|
10
|
+
|
|
11
|
+
## 2.0.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 06a410b: chore: synchronize monorepo to v2.0.1 and finalize release infrastructure.
|
|
16
|
+
- Updated dependencies [06a410b]
|
|
17
|
+
- @getmikk/core@2.0.3
|
|
18
|
+
|
|
19
|
+
## 2.0.2
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 5dfe317: test
|
|
24
|
+
- 9118944: test
|
|
25
|
+
- 36bbb2f: test
|
|
26
|
+
- fe8ac06: chore: synchronize all packages to v2.0.1 and finalize release infrastructure.
|
|
27
|
+
- b00faed: test
|
|
28
|
+
- Updated dependencies [5dfe317]
|
|
29
|
+
- Updated dependencies [9118944]
|
|
30
|
+
- Updated dependencies [36bbb2f]
|
|
31
|
+
- Updated dependencies [fe8ac06]
|
|
32
|
+
- Updated dependencies [b00faed]
|
|
33
|
+
- @getmikk/core@2.0.2
|
|
34
|
+
|
|
35
|
+
## 2.0.1
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- bd5c050: 2.0.1
|
|
40
|
+
- 0ccbf45: 2.0.1
|
|
41
|
+
- Updated dependencies [bd5c050]
|
|
42
|
+
- Updated dependencies [ff1444f]
|
|
43
|
+
- Updated dependencies [0ccbf45]
|
|
44
|
+
- @getmikk/core@2.0.1
|
|
45
|
+
|
|
46
|
+
## 3.0.0
|
|
47
|
+
|
|
48
|
+
### Major Changes
|
|
49
|
+
|
|
50
|
+
- 568a3d5: 2.0.0
|
|
51
|
+
|
|
52
|
+
### Patch Changes
|
|
53
|
+
|
|
54
|
+
- Updated dependencies [568a3d5]
|
|
55
|
+
- @getmikk/core@3.0.0
|
package/package.json
CHANGED
|
@@ -1,30 +1,35 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"test": "bun test",
|
|
21
|
-
"dev": "tsc --watch"
|
|
22
|
-
},
|
|
23
|
-
"dependencies": {
|
|
24
|
-
"@getmikk/core": "^1.9.1"
|
|
25
|
-
},
|
|
26
|
-
"devDependencies": {
|
|
27
|
-
"typescript": "^5.7.0",
|
|
28
|
-
"@types/node": "^22.0.0"
|
|
2
|
+
"name": "@getmikk/diagram-generator",
|
|
3
|
+
"version": "2.0.10",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public",
|
|
6
|
+
"registry": "https://registry.npmjs.org/"
|
|
7
|
+
},
|
|
8
|
+
"license": "Apache-2.0",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/Ansh-dhanani/mikk"
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "./dist/index.js",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"import": "./dist/index.js",
|
|
19
|
+
"types": "./dist/index.d.ts"
|
|
29
20
|
}
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "tsc",
|
|
24
|
+
"test": "bun test",
|
|
25
|
+
"dev": "tsc --watch",
|
|
26
|
+
"lint": "eslint ."
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@getmikk/core": "^2.0.8"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"typescript": "^5.7.0",
|
|
33
|
+
"@types/node": "^22.0.0"
|
|
34
|
+
}
|
|
30
35
|
}
|