Skip to content

Commit

Permalink
Merge pull request #36 from cpcwood/update-deps-2023-09
Browse files Browse the repository at this point in the history
Update deps 2023-09 & migrate to yarn pnp
  • Loading branch information
cpcwood authored Sep 4, 2023
2 parents 858ca3f + 001a7cf commit 77db43d
Show file tree
Hide file tree
Showing 709 changed files with 30,572 additions and 4,556 deletions.
17 changes: 7 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: 2.1

orbs:
node: circleci/node@4.3.0
ruby: circleci/ruby@1.1.4
node: circleci/node@5.1.0
ruby: circleci/ruby@2.1.0

workflows:
version: 2
Expand Down Expand Up @@ -30,19 +30,16 @@ jobs:
- checkout
- node/install:
install-yarn: true
install-npm: true
- node/install-packages:
pkg-manager: yarn
- ruby/install:
version: '2.7.2'
version: '3.2.2'
- restore_cache:
keys:
- gems-v1-{{ checksum "./Gemfile.lock" }}-{{ .Branch }}
- gems-v2-{{ checksum "./Gemfile.lock" }}-{{ .Branch }}
- run:
name: 'Bundle install'
command: bundle install
- save_cache:
key: gems-v1-{{ checksum "./Gemfile.lock" }}-{{ .Branch }}
key: gems-v2-{{ checksum "./Gemfile.lock" }}-{{ .Branch }}
paths:
- ~/bundle
- run:
Expand All @@ -59,14 +56,14 @@ jobs:
command: yarn coveralls
- persist_to_workspace:
root: ~/repo
paths: .
paths: ./
deploy:
<<: *defaults
steps:
- attach_workspace:
at: ~/repo
- node/install:
install-npm: true
install-yarn: true
- run:
name: Authenticate with registry
command: echo "//registry.npmjs.org/:_authToken=$npm_TOKEN" > ~/repo/.npmrc
Expand Down
13 changes: 10 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
*.DS_Store
*.log

node_modules
temp-files
coverage
process.yml
*.log

.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
22 changes: 22 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
*.DS_Store
*.log

.circleci
.yarn
coverage
node_modules
e2e
tests

.eslintrc.json
.gitignore
.npmignore
.pnp.cjs
.pnp.loader.mjs
.yarnrc.yml
babel.config.js
Gemfile
Gemfile.lock
LICENSE
test.js
tests
20,394 changes: 20,394 additions & 0 deletions .pnp.cjs

Large diffs are not rendered by default.

Loading

0 comments on commit 77db43d

Please sign in to comment.