Skip to content

Commit 35ca52d

Browse files
authored
Merge pull request #24 from wizard04wsu/dev
Use Yarn
2 parents 3dddd66 + a419799 commit 35ca52d

102 files changed

Lines changed: 13927 additions & 11 deletions

File tree

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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
7+
[*.{js,json,yml}]
8+
charset = utf-8
9+
indent_style = space
10+
indent_size = 2

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Identify the release and plugin bundles as binary content so that Git won't bother showing massive diffs
2+
/.yarn/releases/** binary
3+
/.yarn/plugins/** binary

.gitignore

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
1-
/bin/
2-
/build/
1+
/.yarn/*
2+
!/.yarn/patches
3+
!/.yarn/plugins
4+
!/.yarn/releases
5+
!/.yarn/sdks
6+
7+
# Swap the comments on the following lines if you don't wish to use zero-installs
8+
# Documentation here: https://yarnpkg.com/features/zero-installs
9+
!/.yarn/cache
10+
#/.pnp.*
11+
312
/node_modules/
4-
/test/
5-
/package-lock.json
6-
*.log
13+
/test/*
14+
!/test/examples/

0 commit comments

Comments
 (0)