Skip to content

Commit

Permalink
Yarn init for yarn3
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Beal committed Jan 11, 2023
1 parent ef5bea8 commit 8c5ed42
Show file tree
Hide file tree
Showing 6 changed files with 846 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true

[*.{js,json,yml}]
charset = utf-8
indent_style = space
indent_size = 2
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# Swap the comments on the following lines if you don't wish to use zero-installs
# Documentation here: https://yarnpkg.com/features/zero-installs
!.yarn/cache
#.pnp.*
823 changes: 823 additions & 0 deletions .yarn/releases/yarn-3.3.1.cjs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
yarnPath: .yarn/releases/yarn-3.3.1.cjs
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"name": "data-repo",
"version": "0.0.1",
"description": "Collection of packages implementing a shared interface for interacting with a variety of data stores and services",
"main": "index.js",
"repository": "[email protected]:jbbeal/data-repo.git",
"author": "Jeff Beal <[email protected]>",
"license": "MIT",
"private": false,
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"packages/*"
Expand Down
Empty file added yarn.lock
Empty file.

0 comments on commit 8c5ed42

Please sign in to comment.