Skip to content

Commit 604efb1

Browse files
committed
🔧 chore(.editorconfig): add editorconfig file
🔧 chore(.gitignore): add .next and .yalc directories to gitignore 🔧 chore(.prettierrc): add prettier configuration file 🚀 chore(package.json): add rollup and typescript dependencies, configure package.json for module distribution 🚀 feat(rollup.config.js): add rollup configuration for building the library and its types ✨ feat(DeviceManager): add DeviceManager component ✨ feat(DeviceManager): add DeviceManagerProps interface ✨ feat(index.ts): export DeviceManager component ✨ feat(index.ts): export all components from components directory 🆕 chore(tsconfig.json): add tsconfig.json file with default compiler options
1 parent 1cd90f7 commit 604efb1

11 files changed

+1308
-3
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
indent_style = space
9+
indent_size = 2

.gitignore

+32
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,35 @@ dist
102102

103103
# TernJS port file
104104
.tern-port
105+
106+
107+
node_modules
108+
*.code-workspace
109+
110+
/dist
111+
112+
# dependencies
113+
/.pnp
114+
.pnp.js
115+
116+
# testing
117+
/coverage
118+
119+
# production
120+
/build
121+
122+
# misc
123+
.DS_Store
124+
.env*
125+
!.env.example
126+
127+
npm-debug.log*
128+
yarn-debug.log*
129+
yarn-error.log*
130+
.vercel
131+
132+
.next
133+
.yalc
134+
yalc.lock
135+
# Sentry
136+
.sentryclirc

.prettierrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{ "semi": false }

0 commit comments

Comments
 (0)