@itcase/config 1.0.69 → 1.0.70

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.
@@ -5,23 +5,17 @@ export default {
5
5
  rules: {
6
6
  'type-case': [2, 'always', 'lower-case'],
7
7
  'type-empty': [2, 'never'],
8
- 'type-enum': [2, 'always', ['other', 'ci', 'docs', 'fix']],
9
-
8
+ 'type-enum': [2, 'always', ['feat', 'fix', 'docs', 'ci', 'other']],
10
9
  'body-empty': [1, 'always'],
11
- 'body-leading-blank': [1, 'always'],
12
- 'body-max-line-length': [2, 'always', 100],
13
-
14
10
  'subject-case': [
15
11
  2,
16
- 'never',
17
- ['sentence-case', 'start-case', 'pascal-case', 'upper-case'],
12
+ 'always',
13
+ ['lower-case', 'sentence-case', 'start-case'],
18
14
  ],
19
- 'subject-empty': [0, 'always'],
20
- 'subject-full-stop': [0, 'never', '.'],
21
- 'footer-leading-blank': [0, 'always'],
22
- 'footer-max-line-length': [0, 'always', 100],
15
+ 'subject-empty': [2, 'never'],
16
+ 'footer-empty': [1, 'always'],
23
17
  'scope-empty': [2, 'never'],
24
- 'scope-enum': [2, 'always', ['report', 'map', 'tasks', 'users']],
18
+ 'scope-enum': [2, 'always', ['PLEASE', 'SET', 'SCOPE-ENUM']],
25
19
  },
26
20
  prompt: {
27
21
  settings: {
@@ -29,39 +23,41 @@ export default {
29
23
  },
30
24
  questions: {
31
25
  type: {
32
- description:
33
- "Sesdfgsdfgdfgdfglect the type of change that you're committing",
26
+ description: "Select the type of change that you're committing",
34
27
  enum: {
35
- ci: {
36
- title: 'Continuous Integrations',
37
- description: 'Changes to our CI configuration files and scripts',
38
- emoji: '⚙️',
28
+ feat: {
29
+ description: 'A new feature',
30
+ title: 'Features',
31
+ emoji: '',
32
+ },
33
+ fix: {
34
+ title: 'Bug Fixes',
35
+ description: 'A bug fix',
36
+ emoji: '🐛',
39
37
  },
40
38
  docs: {
41
39
  title: 'Documentation',
42
40
  description: 'Documentation only changes',
43
41
  emoji: '📚',
44
42
  },
45
- fix: {
46
- title: 'Bug Fixes',
47
- description: 'A bug fix',
48
- emoji: '🐛',
43
+ ci: {
44
+ title: 'Continuous Integrations',
45
+ description: 'Changes to our CI configuration files and scripts',
46
+ emoji: '⚙️',
49
47
  },
50
48
  other: {
51
49
  title: 'Other',
52
- description: "Other changes that don't modify src or test files",
50
+ description: "Other changes that don't include scope",
53
51
  emoji: '♻️',
54
52
  },
55
53
  },
56
54
  },
57
- body: {
58
- description: '333333body',
59
- },
60
55
  scope: {
61
- description: '111111scope',
56
+ description: 'What is the scope of this change',
62
57
  },
63
58
  subject: {
64
- description: '222222subject',
59
+ description:
60
+ 'Write a short, imperative tense description of the change',
65
61
  },
66
62
  },
67
63
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/config",
3
- "version": "1.0.69",
3
+ "version": "1.0.70",
4
4
  "author": "ITCase",
5
5
  "description": "Config",
6
6
  "engines": {