Skip to content

Commit e389a94

Browse files
AirtableNabeelFarooqui-at
authored andcommitted
@airtable/blocks-testing@0.0.6
1 parent ceb1600 commit e389a94

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

packages/blocks-testing/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ Not every commit needs to result in a change to this file (e.g. docs and chore c
99
commit that affects the code in a way that consumers might care about should include edits to the
1010
'Unreleased' section though. Breaking changes should be prefixed with `**BREAKING:**`.
1111

12-
## [Unreleased](https://github.com/airtable/blocks-testing/compare/@airtable/blocks-testing@0.0.5...HEAD)
12+
## [Unreleased](https://github.com/airtable/blocks-testing/compare/@airtable/blocks-testing@0.0.6...HEAD)
1313

1414
No changes.
1515

16+
## [0.0.6](https://github.com/airtable/blocks-testing/compare/@airtable/blocks-testing@0.0.5...@airtable/blocks-testing@0.0.6) - 2023-11-30
17+
18+
Support React 17 as a peer dependency.
19+
1620
## [0.0.5](https://github.com/airtable/blocks-testing/compare/@airtable/blocks-testing@0.0.4...@airtable/blocks-testing@0.0.5) - 2022-09-23
1721

1822
- Use `keyof any` instead of `PropertyKey` in type definition to avoid incompatibility with the

packages/blocks-testing/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@airtable/blocks-testing",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "Airtable Blocks Testing Library",
55
"repository": {
66
"type": "git",
@@ -14,7 +14,7 @@
1414
"types"
1515
],
1616
"scripts": {
17-
"ci": "(cd ../sdk && yarn build) && yarn run build && yarn run test:coverage && ./scripts/check_integration_with_sdk.sh",
17+
"ci": "echo '--- blocks-testing' && (cd ../sdk && yarn build) && yarn run build && yarn run test:coverage && ./scripts/check_integration_with_sdk.sh",
1818
"pretest": "yarn run lint && yarn run types",
1919
"version": "changelog-publish --github-repo-url='https://github.com/airtable/blocks-testing' --git-tag-prefix='@airtable/blocks-testing@' && git add CHANGELOG.md",
2020
"release": "npm_config_registry=https://registry.npmjs.org/ release-it",
@@ -88,8 +88,8 @@
8888
]
8989
},
9090
"peerDependencies": {
91-
"react": "^16.8.0",
92-
"react-dom": "^16.8.0",
91+
"react": "^16.8.0 || ^17.0.0",
92+
"react-dom": "^16.8.0 || ^17.0.0",
9393
"@airtable/blocks": "^1.5.1"
9494
},
9595
"jest": {

packages/blocks-testing/scripts/check_integration_with_sdk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ cat - > package.json <<EOF
4242
"jest": "^26.6.3",
4343
"react": "^16.8.0",
4444
"react-dom": "^16.8.0",
45-
"typescript": "latest"
45+
"typescript": "^4.9.5"
4646
}
4747
}
4848
EOF

packages/sdk/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ To get started, check out the
88
questions, feedback, or feature requests, we encourage you to post in the
99
[community forum](https://community.airtable.com/c/developers/custom-blocks-beta/54).
1010

11+
This git repository contains a few related projects:
12+
13+
- [The sdk itself](./packages/sdk) - this is what you use when building your extension!
14+
- [A blocks testing framework](./packages/blocks-testing) - this is used to help test your
15+
extension.
16+
- [The new Blocks CLI](./packages/cli-next) - this is used to run your extension!
17+
1118
By using the software, you accept and agree to abide by terms of the developer agreement below:
1219

1320
## Developer agreement

0 commit comments

Comments
 (0)