Skip to content

Commit e5a5552

Browse files
committed
resolve merge conflicts
2 parents c1d97fd + a87770a commit e5a5552

File tree

251 files changed

+8229
-6634
lines changed

Some content is hidden

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

251 files changed

+8229
-6634
lines changed

.gitattributes

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
.yarn/**/* linguist-generated -diff
2-
.yalc/**/* linguist-generated -diff
32
.pnp.cjs text linguist-generated -diff
43
.pnp.loader.mjs text linguist-generated -diff
54
yarn.lock text linguist-generated -diff
6-
yalc.lock text linguist-generated -diff
75
*.lock text linguist-generated -diff
86

97
# Archives

.github/workflows/knip.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,18 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
10+
<<<<<<< HEAD
1011

1112
- name: Install corepack
1213
run: npm i -g corepack
14+
=======
15+
>>>>>>> a87770a8fd11cef16bd907569957a24c609917ee
1316

1417
- name: Install pnpm
15-
run: corepack enable pnpm
18+
run: npm i -g --force corepack && corepack enable pnpm
1619

1720
- name: Install Node.js
18-
uses: actions/setup-node@v3
21+
uses: actions/setup-node@v4
1922
with:
2023
node-version: 20
2124
cache: 'pnpm'

.github/workflows/pages-deployment.yaml

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,9 @@ env:
77

88
on: [push]
99
jobs:
10-
yalc_check:
11-
runs-on: ubuntu-latest
12-
outputs:
13-
can_deploy: ${{ steps.has_yalc.conclusion == 'success' }}
14-
steps:
15-
- name: Checkout
16-
uses: actions/checkout@v4
17-
18-
- name: Install Yalc
19-
run: npm i -g yalc
20-
21-
- id: has_yalc
22-
run: |
23-
! yalc check | grep -qe .
24-
2510
deploy:
2611
if: ${{ always() }}
2712
runs-on: ubuntu-latest
28-
needs: [yalc_check]
2913
permissions:
3014
contents: read
3115
deployments: write
@@ -36,18 +20,11 @@ jobs:
3620
- name: Install Misc. Deps
3721
run: sudo apt-get install -y libcairo2-dev libjpeg8-dev libpango1.0-dev libgif-dev build-essential g++
3822

39-
- name: Check Yalc
40-
if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev' }}
41-
run: if [ ${{ needs.yalc_check.outputs.can_deploy }} != true ]; then exit 1; else exit 0; fi
42-
43-
- name: Install corepack
44-
run: npm i -g corepack
45-
4623
- name: Install pnpm
47-
run: corepack enable pnpm
24+
run: npm i -g --force corepack && corepack enable pnpm
4825

4926
- name: Install Node.js
50-
uses: actions/setup-node@v3
27+
uses: actions/setup-node@v4
5128
with:
5229
node-version: 20
5330
cache: 'pnpm'

.github/workflows/test.yaml

Lines changed: 13 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,11 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v4
1313

14-
- name: Install corepack
15-
run: npm i -g corepack
16-
1714
- name: Install pnpm
18-
run: corepack enable pnpm
15+
run: npm i -g --force corepack && corepack enable pnpm
1916

2017
- name: Install Node.js
21-
uses: actions/setup-node@v3
18+
uses: actions/setup-node@v4
2219
with:
2320
node-version: 20
2421
cache: 'pnpm'
@@ -27,7 +24,7 @@ jobs:
2724

2825
- name: Get contract addresses
2926
run: 'parallel --lb --halt now,success=1,fail=1 ::: \
30-
"pnpm tenv start -ng -ns -nb" \
27+
"pnpm tenv start --no-graph --no-scripts --no-build --exit-after-deploy" \
3128
"pnpm wait-on ./.env.local"'
3229

3330
- run: pnpm test:coverage
@@ -37,14 +34,11 @@ jobs:
3734
steps:
3835
- uses: actions/checkout@v4
3936

40-
- name: Install corepack
41-
run: npm i -g corepack
42-
4337
- name: Install pnpm
44-
run: corepack enable pnpm
38+
run: npm i -g --force corepack && corepack enable pnpm
4539

4640
- name: Install Node.js
47-
uses: actions/setup-node@v3
41+
uses: actions/setup-node@v4
4842
with:
4943
node-version: 20
5044
cache: 'pnpm'
@@ -53,7 +47,7 @@ jobs:
5347

5448
- name: Get contract addresses
5549
run: 'parallel --lb --halt now,success=1,fail=1 ::: \
56-
"pnpm tenv start -ng -ns -nb" \
50+
"pnpm tenv start --no-graph --no-scripts --no-build --exit-after-deploy" \
5751
"pnpm wait-on ./.env.local"'
5852

5953
- name: Build stateless and export
@@ -73,14 +67,11 @@ jobs:
7367
steps:
7468
- uses: actions/checkout@v4
7569

76-
- name: Install corepack
77-
run: npm i -g corepack
78-
7970
- name: Install pnpm
80-
run: corepack enable pnpm
71+
run: npm i -g --force corepack && corepack enable pnpm
8172

8273
- name: Install Node.js
83-
uses: actions/setup-node@v3
74+
uses: actions/setup-node@v4
8475
with:
8576
node-version: 20
8677
cache: 'pnpm'
@@ -141,14 +132,11 @@ jobs:
141132
steps:
142133
- uses: actions/checkout@v4
143134

144-
- name: Install corepack
145-
run: npm i -g corepack
146-
147135
- name: Install pnpm
148-
run: corepack enable pnpm
136+
run: npm i -g --force corepack && corepack enable pnpm
149137

150138
- name: Install Node.js
151-
uses: actions/setup-node@v3
139+
uses: actions/setup-node@v4
152140
with:
153141
node-version: 20
154142
cache: 'pnpm'
@@ -172,7 +160,7 @@ jobs:
172160

173161
- name: Run tests
174162
run: |
175-
PLAYWRIGHT_SHARD=${{matrix.shard}} PLAYWRIGHT_TOTAL=${{strategy.job-total}} pnpm e2e:ci -nb
163+
PLAYWRIGHT_SHARD=${{matrix.shard}} PLAYWRIGHT_TOTAL=${{strategy.job-total}} pnpm e2e:ci --no-build
176164
177165
- uses: actions/upload-artifact@v4
178166
if: always()
@@ -199,10 +187,10 @@ jobs:
199187
run: npm i -g corepack
200188

201189
- name: Install pnpm
202-
run: corepack enable pnpm
190+
run: npm i -g --force corepack && corepack enable pnpm
203191

204192
- name: Install Node.js
205-
uses: actions/setup-node@v3
193+
uses: actions/setup-node@v4
206194
with:
207195
node-version: 20
208196
cache: 'pnpm'

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,3 @@ tsconfig.vitest-temp.json
7272
.sentryclirc
7373

7474
.dev.vars
75-
76-
*yalc*

.npmrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
strict-peer-dependencies=false
1+
strict-peer-dependencies=false
2+
auto-install-peers=false

.prettierignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
.yalc
21
.next
32
node_modules
43
pnpm-lock.yaml

.stylelintrc.json

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
{
2-
"processors": ["stylelint-processor-styled-components"],
32
"extends": [
4-
"stylelint-config-standard-scss",
5-
"stylelint-config-styled-components",
6-
"stylelint-config-prettier"
3+
"stylelint-config-standard"
74
],
8-
"customSyntax": "postcss-scss",
5+
"customSyntax": "postcss-styled-syntax",
96
"rules": {
107
"selector-type-case": ["lower", { "ignoreTypes": ["/^\\$\\w+/"] }],
118
"selector-type-no-unknown": [true, { "ignoreTypes": ["/-styled-mixin/", "/^\\$\\w+/"] }],
129
"value-keyword-case": ["lower", { "ignoreKeywords": ["dummyValue", "currentColor"] }],
13-
"declaration-colon-newline-after": null,
1410
"declaration-empty-line-before": null,
1511
"property-no-unknown": [
1612
true,
@@ -20,11 +16,19 @@
2016
],
2117
"color-function-notation": "legacy",
2218
"alpha-value-notation": "number",
23-
"scss/operator-no-newline-after": null,
24-
"scss/operator-no-unspaced": null,
2519
"custom-property-pattern": null,
2620
"rule-empty-line-before": null,
2721
"keyframes-name-pattern": null,
28-
"keyframe-block-no-duplicate-selectors": null
22+
"keyframe-block-no-duplicate-selectors": null,
23+
"no-empty-source": null,
24+
"media-query-no-invalid": null,
25+
"at-rule-empty-line-before": null,
26+
"declaration-block-no-redundant-longhand-properties": null,
27+
"media-feature-range-notation": null,
28+
"declaration-property-value-no-unknown": [true, {
29+
"ignoreProperties": {
30+
"-moz-background-clip": ["text"]
31+
}
32+
}]
2933
}
3034
}

README.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ The App is hosted on cloudflare and IPFS
107107

108108
#### [Ens.js](https://github.com/ensdomains/ensjs-v3)
109109

110-
Much of the logic around interacting with the ENS contracts has been extraced into this
110+
Much of the logic around interacting with the ENS contracts has been extracted into this
111111
library. This is mostly so that we can help to make the experience of interacting with
112112
ENS as simple as possible for other developers.
113113

@@ -469,17 +469,10 @@ Cloudflare will automatically build and deploy a test site when pushed to a new
469469

470470
## External Package Local Development
471471

472-
1. Install yalc globally:
472+
2. Link a local package:
473473

474474
```bash
475-
npm i -g yalc
476-
```
477-
478-
2. Run relevant update script within external repo, for example:
479-
480-
```bash
481-
# Example publish script for ENSjs, be aware this may have changed.
482-
pnpm publish:local:ensjs
475+
pnpm link ../ensjs
483476
```
484477

485478
3. Run pnpm install within this repo:
@@ -488,7 +481,6 @@ pnpm publish:local:ensjs
488481
pnpm install
489482
```
490483

491-
If updating an existing yalc installation, you can add the `--force` flag.
492484

493485
## Coding guidelines
494486

archive.tar.gz

7.43 MB
Binary file not shown.

0 commit comments

Comments
 (0)