@baeta/generator-sdk 0.0.12 → 0.0.14
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 +22 -0
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +7 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @baeta/generator-sdk
|
|
2
2
|
|
|
3
|
+
## 0.0.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#139](https://github.com/andreisergiu98/baeta/pull/139) [`00dbc8f`](https://github.com/andreisergiu98/baeta/commit/00dbc8f35839aaa6524a6c0125ff38a766e45be4) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - update dependencies
|
|
8
|
+
|
|
9
|
+
- [#139](https://github.com/andreisergiu98/baeta/pull/139) [`00dbc8f`](https://github.com/andreisergiu98/baeta/commit/00dbc8f35839aaa6524a6c0125ff38a766e45be4) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - update typescript
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`00dbc8f`](https://github.com/andreisergiu98/baeta/commit/00dbc8f35839aaa6524a6c0125ff38a766e45be4), [`00dbc8f`](https://github.com/andreisergiu98/baeta/commit/00dbc8f35839aaa6524a6c0125ff38a766e45be4)]:
|
|
12
|
+
- @baeta/plugin@0.0.25
|
|
13
|
+
- @baeta/util-path@0.0.6
|
|
14
|
+
|
|
15
|
+
## 0.0.13
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [#128](https://github.com/andreisergiu98/baeta/pull/128) [`534917a`](https://github.com/andreisergiu98/baeta/commit/534917a18e7ed5d788a90a0335a5370d6af8f4a4) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - update dependencies
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [[`534917a`](https://github.com/andreisergiu98/baeta/commit/534917a18e7ed5d788a90a0335a5370d6af8f4a4)]:
|
|
22
|
+
- @baeta/plugin@0.0.24
|
|
23
|
+
- @baeta/util-path@0.0.5
|
|
24
|
+
|
|
3
25
|
## 0.0.12
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/dist/index.d.cts
CHANGED
|
@@ -129,7 +129,7 @@ declare class FileManager {
|
|
|
129
129
|
type MatchFn = (testString: string) => boolean;
|
|
130
130
|
type MatchPattern = string | RegExp | MatchFn;
|
|
131
131
|
|
|
132
|
-
declare const isMatch: (string: string, pattern: string | readonly string[], options?: micromatch.Options
|
|
132
|
+
declare const isMatch: (string: string, pattern: string | readonly string[], options?: micromatch.Options) => boolean;
|
|
133
133
|
type WatcherListener = (path: WatcherFile) => void;
|
|
134
134
|
interface WatcherFile {
|
|
135
135
|
type: EventType;
|
package/dist/index.d.ts
CHANGED
|
@@ -129,7 +129,7 @@ declare class FileManager {
|
|
|
129
129
|
type MatchFn = (testString: string) => boolean;
|
|
130
130
|
type MatchPattern = string | RegExp | MatchFn;
|
|
131
131
|
|
|
132
|
-
declare const isMatch: (string: string, pattern: string | readonly string[], options?: micromatch.Options
|
|
132
|
+
declare const isMatch: (string: string, pattern: string | readonly string[], options?: micromatch.Options) => boolean;
|
|
133
133
|
type WatcherListener = (path: WatcherFile) => void;
|
|
134
134
|
interface WatcherFile {
|
|
135
135
|
type: EventType;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baeta/generator-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"baeta",
|
|
6
6
|
"graphql",
|
|
@@ -39,24 +39,23 @@
|
|
|
39
39
|
],
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "tsup",
|
|
42
|
-
"dev": "tsup --watch",
|
|
43
42
|
"prepack": "prep",
|
|
44
43
|
"postpack": "prep --clean",
|
|
45
44
|
"types": "tsc --noEmit"
|
|
46
45
|
},
|
|
47
46
|
"dependencies": {
|
|
48
|
-
"@baeta/plugin": "^0.0.
|
|
49
|
-
"@baeta/util-path": "^0.0.
|
|
47
|
+
"@baeta/plugin": "^0.0.25",
|
|
48
|
+
"@baeta/util-path": "^0.0.6",
|
|
50
49
|
"@parcel/watcher": "^2.4.1",
|
|
51
50
|
"change-case-all": "2.1.0",
|
|
52
|
-
"micromatch": "^4.0.
|
|
51
|
+
"micromatch": "^4.0.7"
|
|
53
52
|
},
|
|
54
53
|
"devDependencies": {
|
|
55
54
|
"@baeta/builder": "^0.0.0",
|
|
56
55
|
"@baeta/tsconfig": "^0.0.0",
|
|
57
|
-
"@types/micromatch": "^4.0.
|
|
58
|
-
"@types/node": "^20.
|
|
59
|
-
"typescript": "^5.
|
|
56
|
+
"@types/micromatch": "^4.0.9",
|
|
57
|
+
"@types/node": "^20.14.10",
|
|
58
|
+
"typescript": "^5.5.3"
|
|
60
59
|
},
|
|
61
60
|
"engines": {
|
|
62
61
|
"node": ">=20.0.0"
|