Skip to content

Commit 0abf916

Browse files
committed
Vite implementation
1 parent 1b0ffcb commit 0abf916

File tree

141 files changed

+947
-2936
lines changed

Some content is hidden

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

141 files changed

+947
-2936
lines changed

.babelrc

Lines changed: 0 additions & 17 deletions
This file was deleted.

.eslintignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 42 deletions
This file was deleted.

.github/comparePackageVersions.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ const getVersionFromBranch = branch => {
4848
const currentBranchVersion = getVersionFromBranch(currentBranch)
4949
const targetBranchVersion = getVersionFromBranch(`remotes/origin/${targetBranch}`)
5050

51-
console.log(`Version in branch ${currentBranch}: ${currentBranchVersion}`)
52-
console.log(`Version in branch ${targetBranch}: ${targetBranchVersion}`)
51+
console.info(`Version in branch ${currentBranch}: ${currentBranchVersion}`)
52+
console.info(`Version in branch ${targetBranch}: ${targetBranchVersion}`)
5353

5454
const isVersionGreater = (targetBranchVersion, currentBranchVersion) => {
5555
const parseVersion = version => version.split('.').map(Number)
@@ -65,7 +65,7 @@ const isVersionGreater = (targetBranchVersion, currentBranchVersion) => {
6565
}
6666

6767
if (isVersionGreater(targetBranchVersion, currentBranchVersion)) {
68-
console.log(
68+
console.info(
6969
`\x1b[32mCurrent version (${currentBranchVersion}) is greater than the target version (${targetBranchVersion}).\x1b[0m`
7070
)
7171
process.exit(0)

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true,
4+
"trailingComma": "none",
5+
"printWidth": 100,
6+
"arrowParens": "avoid"
7+
}

.prettierrc.js

Lines changed: 0 additions & 23 deletions
This file was deleted.

.storybook/main.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ module.exports = {
2323
addons: [
2424
'@storybook/addon-links',
2525
'@storybook/addon-essentials',
26-
'@storybook/addon-interactions',
27-
'@storybook/preset-create-react-app'
26+
'@storybook/addon-interactions'
2827
],
2928
framework: '@storybook/react',
3029
core: {
-17.4 KB
Binary file not shown.

dist/fonts/roboto-v27-latin-300.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.
-35.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)