Skip to content

Commit

Permalink
ci: fix dependency issue in CI (#818)
Browse files Browse the repository at this point in the history
* ci: fix dependency issue in CI

* chore: bump patch version so CI/CD in node/python can pick up the fix
  • Loading branch information
porcellus authored Apr 29, 2024
1 parent 7f017c4 commit 424650d
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 14 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [0.40.1] - 2024-04-29

### CI changes

- Changed an internal test script to fix a dependency issue in CI

## [0.40.0] - 2024-04-15

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion lib/build/genericComponentOverrideContext.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/build/version.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/ts/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
* License for the specific language governing permissions and limitations
* under the License.
*/
export const package_version = "0.40.0";
export const package_version = "0.40.1";
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "supertokens-auth-react",
"version": "0.40.0",
"version": "0.40.1",
"description": "ReactJS SDK that provides login functionality with SuperTokens.",
"main": "./index.js",
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions test/prepTestApp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ rm ../../supertokens-auth-react-*.tgz
cd node_modules/supertokens-auth-react

# install prod dependencies only
npm i --production || exit $?
npm i --force --omit=dev || exit $?

rm -rf node_modules/react # We need this because we do local install instead which doesn't take the parent dir into account
rm -rf node_modules/.cache
Expand All @@ -27,4 +27,4 @@ ln -s ../../../../../node_modules/supertokens-web-js node_modules/supertokens-we
# We symlink the supertokens-website dep to ensure it's the same version (maybe linked locally)
ln -s ../../../../../node_modules/supertokens-website node_modules/supertokens-website

echo "$1 prepped."
echo "$1 prepped."

0 comments on commit 424650d

Please sign in to comment.