@baeta/plugin-gitignore 0.1.0 → 0.1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @baeta/plugin-gitignore
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`a3f0e5d`](https://github.com/andreisergiu98/baeta/commit/a3f0e5d03fc9ef21a87d3ec6bf264d0e9707636a) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - fix exports order in package.json
8
+
9
+ - [#161](https://github.com/andreisergiu98/baeta/pull/161) [`cca37dd`](https://github.com/andreisergiu98/baeta/commit/cca37dd7135a2852f1f6e287c46911306bdc8da0) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - update dependencies
10
+
11
+ - Updated dependencies [[`7f1958c`](https://github.com/andreisergiu98/baeta/commit/7f1958c44d1b9bed473e48c875fdaa7020c434fa), [`b9638eb`](https://github.com/andreisergiu98/baeta/commit/b9638eb9fb713507efa9821b4f04cc7896a997b1), [`fd3a5d2`](https://github.com/andreisergiu98/baeta/commit/fd3a5d27b497aca4b8807155e801b1c1197c5fe2), [`9d8d6a1`](https://github.com/andreisergiu98/baeta/commit/9d8d6a15d63579a2e0bdaa07b7efdcf10aff2492), [`a3f0e5d`](https://github.com/andreisergiu98/baeta/commit/a3f0e5d03fc9ef21a87d3ec6bf264d0e9707636a), [`cca37dd`](https://github.com/andreisergiu98/baeta/commit/cca37dd7135a2852f1f6e287c46911306bdc8da0)]:
12
+ - @baeta/generator-sdk@0.1.1
13
+
3
14
  ## 0.1.0
4
15
 
5
16
  ### Minor Changes
package/dist/index.d.cts CHANGED
@@ -3,6 +3,6 @@ import * as _baeta_generator_sdk from '@baeta/generator-sdk';
3
3
  interface GitignoreOptions {
4
4
  ignoreTags?: string[];
5
5
  }
6
- declare function gitignorePlugin(options?: GitignoreOptions): _baeta_generator_sdk.GeneratorPluginV1<{}>;
6
+ declare function gitignorePlugin(options?: GitignoreOptions): _baeta_generator_sdk.GeneratorPluginV1<unknown>;
7
7
 
8
8
  export { type GitignoreOptions, gitignorePlugin };
package/dist/index.d.ts CHANGED
@@ -3,6 +3,6 @@ import * as _baeta_generator_sdk from '@baeta/generator-sdk';
3
3
  interface GitignoreOptions {
4
4
  ignoreTags?: string[];
5
5
  }
6
- declare function gitignorePlugin(options?: GitignoreOptions): _baeta_generator_sdk.GeneratorPluginV1<{}>;
6
+ declare function gitignorePlugin(options?: GitignoreOptions): _baeta_generator_sdk.GeneratorPluginV1<unknown>;
7
7
 
8
8
  export { type GitignoreOptions, gitignorePlugin };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baeta/plugin-gitignore",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "keywords": [
5
5
  "baeta",
6
6
  "graphql",
@@ -27,9 +27,9 @@
27
27
  "type": "module",
28
28
  "exports": {
29
29
  ".": {
30
+ "types": "./dist/index.d.ts",
30
31
  "import": "./dist/index.js",
31
- "require": "./dist/index.cjs",
32
- "types": "./dist/index.d.ts"
32
+ "require": "./dist/index.cjs"
33
33
  }
34
34
  },
35
35
  "types": "dist/index.d.ts",
@@ -44,13 +44,13 @@
44
44
  "types": "tsc --noEmit"
45
45
  },
46
46
  "dependencies": {
47
- "@baeta/generator-sdk": "^0.1.0"
47
+ "@baeta/generator-sdk": "^0.1.1"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@baeta/builder": "^0.0.0",
51
51
  "@baeta/tsconfig": "^0.0.0",
52
- "@types/node": "^22.7.4",
53
- "typescript": "^5.6.2"
52
+ "@types/node": "^22.9.0",
53
+ "typescript": "^5.6.3"
54
54
  },
55
55
  "engines": {
56
56
  "node": ">=22.0.0"