Skip to content

Commit ae22f50

Browse files
authored
Merge pull request #54 from svelteuidev/next-minor
[0.6.0] Next minor release
2 parents 5c31f92 + a058296 commit ae22f50

File tree

836 files changed

+28066
-175264
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

836 files changed

+28066
-175264
lines changed

.config/cz-config.js

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
module.exports = {
2+
typePrefix: '[',
3+
typeSuffix: ']',
4+
types: [
5+
{
6+
value: 'core',
7+
name: 'core: A change made in repository tooling (not a package)'
8+
},
9+
{ value: 'docs', name: 'docs: A change made in the documentation' },
10+
{ value: '@svelteui/core', name: '@svelteui/core: A change made in core package' },
11+
{ value: '@svelteui/actions', name: '@svelteui/actions: A change made in actions package' },
12+
{
13+
value: '@svelteui/utilities',
14+
name: '@svelteui/utilities: A change made in utilities package'
15+
},
16+
{ value: '@svelteui/motion', name: '@svelteui/motion: A change made in motion package' },
17+
{ value: '@svelteui/prism', name: '@svelteui/prism: A change made in prism package' },
18+
{ value: '@svelteui/demos', name: '@svelteui/demos: A change made in demos package' },
19+
{ value: '@svelteui/dates', name: '@svelteui/dates: A change made in dates package' }
20+
],
21+
22+
allowTicketNumber: false,
23+
isTicketNumberRequired: false,
24+
ticketNumberPrefix: 'TICKET-',
25+
ticketNumberRegExp: '\\d{1,5}',
26+
27+
// override the messages, defaults are as follows
28+
messages: {
29+
type: "Select the type of change that you're committing:",
30+
subject: 'Write a SHORT, IMPERATIVE tense description of the change:\n',
31+
body: 'Provide a LONGER description of the change (optional). Use "|" to break new line:\n',
32+
breaking: 'List any BREAKING CHANGES (optional):\n',
33+
footer: 'List any ISSUES CLOSED by this change (optional). E.g.: #31, #34:\n',
34+
confirmCommit: 'Are you sure you want to proceed with the commit above?'
35+
},
36+
37+
allowCustomScopes: false,
38+
allowBreakingChanges: ['feat', 'fix'],
39+
// skip any questions you want
40+
skipQuestions: ['body', 'breaking', 'footer', 'scope'],
41+
42+
// limit subject length
43+
subjectLimit: 100
44+
// breaklineChar: '|', // It is supported for fields body and footer.
45+
// footerPrefix : 'ISSUES CLOSED:'
46+
// askForBreakingChangeFirst : true, // default is false
47+
};

.config/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"type": "commonjs"
3+
}

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@
44
"codesandbox",
55
"cssvariable",
66
"flipboard",
7+
"mousedown",
78
"okaidia",
89
"onuseclipboard",
910
"onusedownload",
1011
"prepush",
12+
"romkor",
1113
"svelteui",
1214
"svelteuidev",
15+
"tableave",
1316
"typecheck",
1417
"usedownload",
1518
"vercel"

configuration/eslint-preset-svelteui/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ module.exports = {
2121
node: true
2222
},
2323
rules: {
24-
'@typescript-eslint/no-inferrable-types': 'off'
24+
'@typescript-eslint/no-inferrable-types': 'off',
25+
'@typescript-eslint/no-extra-boolean-cast': 'off'
2526
}
2627
};

docs/.gitignore

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,2 @@
1-
.next
2-
.now
3-
.env
4-
.env.*
51
node_modules
6-
*.log
7-
.DS_Store
8-
.vercel
2+
__DOCS__

docs/.next/build-manifest.json

-41
This file was deleted.

docs/.next/cache/next-babel-loader/000d6ae2260b376e21d0cb8d041aa238.json

-1
This file was deleted.

0 commit comments

Comments
 (0)