Skip to content

Commit 424650d

Browse files
authored
ci: fix dependency issue in CI (#818)
* ci: fix dependency issue in CI * chore: bump patch version so CI/CD in node/python can pick up the fix
1 parent 7f017c4 commit 424650d

File tree

7 files changed

+20
-14
lines changed

7 files changed

+20
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [unreleased]
99

10+
## [0.40.1] - 2024-04-29
11+
12+
### CI changes
13+
14+
- Changed an internal test script to fix a dependency issue in CI
15+
1016
## [0.40.0] - 2024-04-15
1117

1218
### Breaking Changes

lib/build/genericComponentOverrideContext.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/build/version.d.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/ts/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
* License for the specific language governing permissions and limitations
1313
* under the License.
1414
*/
15-
export const package_version = "0.40.0";
15+
export const package_version = "0.40.1";

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "supertokens-auth-react",
3-
"version": "0.40.0",
3+
"version": "0.40.1",
44
"description": "ReactJS SDK that provides login functionality with SuperTokens.",
55
"main": "./index.js",
66
"engines": {

test/prepTestApp.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ rm ../../supertokens-auth-react-*.tgz
1414
cd node_modules/supertokens-auth-react
1515

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

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

30-
echo "$1 prepped."
30+
echo "$1 prepped."

0 commit comments

Comments
 (0)