@jeromefitz/conventional-gitmoji 4.0.1 → 4.0.2-canary.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/index.d.ts +4 -4
  2. package/package.json +3 -4
package/index.d.ts CHANGED
@@ -19,10 +19,10 @@ declare const writerOpts: {
19
19
  };
20
20
  declare const types: IReleaseRule;
21
21
  declare const releaseRules: {
22
- message?: string | null | undefined;
23
- release?: string | null | undefined;
24
- tag?: string | null | undefined;
25
- type?: string | null | undefined;
22
+ message?: null | string;
23
+ release?: null | string;
24
+ tag?: null | string;
25
+ type?: null | string;
26
26
  }[];
27
27
  declare const typeSpecs: Omit<IReleaseRuleProps, "branch" | "commit" | "entity" | "name">[];
28
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jeromefitz/conventional-gitmoji",
3
- "version": "4.0.1",
3
+ "version": "4.0.2-canary.1",
4
4
  "type": "module",
5
5
  "description": "Helper package for dual gitmoji / conventional commits",
6
6
  "repository": "jeromefitz/packages.git",
@@ -28,7 +28,7 @@
28
28
  "format:prettier": "prettier \"./src/**/*.{cjs,js,jsx,mjs,ts,tsx,json,md,mdx,css,html,yml,yaml,scss}\" --ignore-unknown --log-level warn",
29
29
  "generate:types": "node ./scripts/generateTypes.js && pnpm run format:lint",
30
30
  "lint": "pnpm run format:prettier --check && pnpm run lint:eslint",
31
- "lint:eslint": "eslint ./src --ext cjs,js,jsx,mjs,ts,tsx --max-warnings=0",
31
+ "lint:eslint": "eslint ./src --max-warnings=0",
32
32
  "semantic-release": "semantic-release",
33
33
  "semantic-release:dry": "semantic-release --dry-run"
34
34
  },
@@ -41,8 +41,7 @@
41
41
  "title": "3.5.3"
42
42
  },
43
43
  "devDependencies": {
44
- "@types/lodash": "4.14.202",
45
- "@types/semantic-release": "20.0.6",
44
+ "@types/lodash": "4.17.5",
46
45
  "@types/title": "3.4.3",
47
46
  "gitmojis": "3.14.0",
48
47
  "lodash": "4.17.21"