@bigbinary/neeto-audit-frontend 2.0.13 → 2.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/create_and_publish_release.yml +5 -5
- package/README.md +1 -0
- package/common/recommendedDependencies/extension.js +1 -1
- package/common/recommendedDependencies/frontend.js +2 -2
- package/common/recommendedDependencies/nano.js +2 -2
- package/dist/index.js +990 -527
- package/package.json +2 -2
|
@@ -16,7 +16,7 @@ jobs:
|
|
|
16
16
|
contains(github.event.pull_request.labels.*.name, 'major') ) }}
|
|
17
17
|
steps:
|
|
18
18
|
- name: Checkout the repository
|
|
19
|
-
uses: actions/checkout@
|
|
19
|
+
uses: actions/checkout@v4
|
|
20
20
|
|
|
21
21
|
- name: Setup git user
|
|
22
22
|
run: |
|
|
@@ -24,12 +24,12 @@ jobs:
|
|
|
24
24
|
git config user.email "thejuspaul@pm.me"
|
|
25
25
|
|
|
26
26
|
- name: Setup NodeJS LTS version
|
|
27
|
-
uses: actions/setup-node@
|
|
27
|
+
uses: actions/setup-node@v4
|
|
28
28
|
with:
|
|
29
|
-
node-version
|
|
29
|
+
node-version: "20"
|
|
30
30
|
|
|
31
31
|
- name: Install PNPM
|
|
32
|
-
uses: pnpm/action-setup@
|
|
32
|
+
uses: pnpm/action-setup@v4
|
|
33
33
|
id: pnpm-install
|
|
34
34
|
with:
|
|
35
35
|
run_install: false
|
|
@@ -40,7 +40,7 @@ jobs:
|
|
|
40
40
|
run: |
|
|
41
41
|
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
|
|
42
42
|
|
|
43
|
-
- uses: actions/cache@
|
|
43
|
+
- uses: actions/cache@v4
|
|
44
44
|
name: Setup pnpm cache
|
|
45
45
|
with:
|
|
46
46
|
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
|
package/README.md
CHANGED
|
@@ -52,3 +52,4 @@ If, for any reason, `yarn neeto-audit-frontend` command fails after pushing the
|
|
|
52
52
|
## Building and Releasing
|
|
53
53
|
|
|
54
54
|
The `@bigbinary/neeto-audit-frontend` gets published to NPM when we merge a PR with `patch`, `minor` or `major` label to the main branch. The `patch` label is used for bug fixes, `minor` label is used for new features and `major` label is used for breaking changes. You can checkout the `Create and publish releases` workflow in GitHub Actions to get a live update. Please note that before publishing the package, you need to verify the functionality in some of the neeto web-apps locally using `yalc` package manager.
|
|
55
|
+
|
|
@@ -16,7 +16,7 @@ const DEV_DEPENDENCIES = {
|
|
|
16
16
|
"@tanstack/react-query": "5.40.0",
|
|
17
17
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
18
18
|
antd: "5.10.2",
|
|
19
|
-
axios: "1.
|
|
19
|
+
axios: "1.7.4",
|
|
20
20
|
classnames: "2.3.2",
|
|
21
21
|
formik: "2.4.5",
|
|
22
22
|
i18next: "23.6.0",
|
|
@@ -50,7 +50,7 @@ const PEER_DEPENDENCIES = {
|
|
|
50
50
|
"@honeybadger-io/react": "^6.1.9",
|
|
51
51
|
"@tanstack/react-query": "5.40.0",
|
|
52
52
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
53
|
-
axios: "
|
|
53
|
+
axios: "1.7.4",
|
|
54
54
|
classnames: "^2.3.2",
|
|
55
55
|
formik: "^2.4.5",
|
|
56
56
|
i18next: "^23.6.0",
|
|
@@ -16,7 +16,7 @@ const DEV_DEPENDENCIES = {
|
|
|
16
16
|
"@tanstack/react-query": "5.40.0",
|
|
17
17
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
18
18
|
antd: "5.10.2",
|
|
19
|
-
axios: "1.
|
|
19
|
+
axios: "1.7.4",
|
|
20
20
|
classnames: "2.3.2",
|
|
21
21
|
formik: "2.4.5",
|
|
22
22
|
i18next: "23.6.0",
|
|
@@ -50,7 +50,7 @@ const PEER_DEPENDENCIES = {
|
|
|
50
50
|
"@honeybadger-io/react": "^6.1.9",
|
|
51
51
|
"@tanstack/react-query": "5.40.0",
|
|
52
52
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
53
|
-
axios: "
|
|
53
|
+
axios: "1.7.4",
|
|
54
54
|
classnames: "^2.3.2",
|
|
55
55
|
formik: "^2.4.5",
|
|
56
56
|
i18next: "^23.6.0",
|