Skip to content

Commit 4c6af64

Browse files
committed
feat: 🎸 4.x (#28)
1 parent 0bc5ae0 commit 4c6af64

81 files changed

Lines changed: 4561 additions & 9879 deletions

Some content is hidden

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

.editorconfig

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

.eslintrc.json

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

.gitignore

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,16 @@
1-
# OS Image thumbnail files
2-
**/.DS_Store
3-
41
# Logs
52
logs
63
*.log
74
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
89

9-
# Runtime data
10-
pids
11-
*.pid
12-
*.seed
13-
14-
# Directory for instrumented libs generated by jscoverage/JSCover
15-
lib-cov
16-
17-
# Coverage directory used by tools like istanbul
18-
coverage
19-
20-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
21-
.grunt
22-
23-
# node-waf configuration
24-
.lock-wscript
25-
26-
# Compiled binary addons (http://nodejs.org/api/addons.html)
27-
lib
28-
29-
# Dependency directories
3010
node_modules
31-
jspm_packages
11+
dist
12+
dist-ssr
13+
*.local
3214

3315
# Optional npm cache directory
3416
.npm
@@ -37,4 +19,24 @@ jspm_packages
3719
.node_repl_history
3820

3921
# Typescript definition files
22+
typings
23+
24+
*.js
25+
*.map
26+
*.d.ts
27+
!types/**/*.d.ts
28+
dist/
29+
!test/**/*.js
4030
.rpt2_cache
31+
# Editor directories and files
32+
.vscode/*
33+
!.vscode/extensions.json
34+
.idea
35+
.DS_Store
36+
*.suo
37+
*.ntvs*
38+
*.njsproj
39+
*.sln
40+
*.sw?
41+
42+
coverage/

.husky/pre-commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pnpm test

.npmignore

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

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist/
2+
pnpm-lock.yaml
3+
pnpm-workspace.yaml

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"trailingComma": "all",
3+
"semi": false,
4+
"tabWidth": 2,
5+
"singleQuote": true,
6+
"plugins": ["prettier-plugin-organize-imports"]
7+
}

.travis.yml

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

.vscode/settings.json

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

BUGS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
mv

0 commit comments

Comments
 (0)