@adminforth/foreign-inline-show 1.0.1 → 1.1.1

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.
@@ -4,7 +4,6 @@ clone:
4
4
  settings:
5
5
  partial: false
6
6
  depth: 5
7
-
8
7
  steps:
9
8
  init-secrets:
10
9
  when:
@@ -16,25 +15,42 @@ steps:
16
15
  commands:
17
16
  - infisical export --domain https://vault.devforth.io/api --format=dotenv-export --env="prod" > /woodpecker/deploy.vault.env
18
17
 
19
- release:
20
- image: node:20
18
+ build:
19
+ image: devforth/node20-pnpm:latest
21
20
  when:
22
21
  - event: push
23
22
  commands:
24
23
  - apt update && apt install -y rsync
25
- - export $(cat /woodpecker/deploy.vault.env | xargs)
26
- - npm clean-install
24
+ - . /woodpecker/deploy.vault.env
25
+ - pnpm install
27
26
  - /bin/bash ./.woodpecker/buildRelease.sh
28
27
  - npm audit signatures
29
- - npx semantic-release
28
+
29
+ release:
30
+ image: devforth/node20-pnpm:latest
31
+ when:
32
+ - event:
33
+ - push
34
+ branch:
35
+ - main
36
+ commands:
37
+ - . /woodpecker/deploy.vault.env
38
+ - pnpm exec semantic-release
30
39
 
31
40
  slack-on-failure:
41
+ image: curlimages/curl
32
42
  when:
33
43
  - event: push
34
- status: [failure, success]
35
- - event: push
44
+ status: [failure]
45
+ commands:
46
+ - . /woodpecker/deploy.vault.env
47
+ - /bin/sh ./.woodpecker/buildSlackNotify.sh failure
48
+
49
+ slack-on-success:
36
50
  image: curlimages/curl
51
+ when:
52
+ - event: push
53
+ status: [success]
37
54
  commands:
38
- - export $(cat /woodpecker/deploy.vault.env | xargs)
39
- - /bin/sh ./.woodpecker/buildSlackNotify.sh
40
-
55
+ - . /woodpecker/deploy.vault.env
56
+ - /bin/sh ./.woodpecker/buildSlackNotify.sh success
package/build.log CHANGED
@@ -6,5 +6,5 @@ sending incremental file list
6
6
  custom/
7
7
  custom/InlineShow.vue
8
8
 
9
- sent 4,078 bytes received 39 bytes 8,234.00 bytes/sec
10
- total size is 3,934 speedup is 0.96
9
+ sent 4,109 bytes received 39 bytes 8,296.00 bytes/sec
10
+ total size is 3,963 speedup is 0.96
@@ -23,6 +23,7 @@
23
23
  :columns="filteredColumns"
24
24
  :resource="listResource"
25
25
  :record="parentRecord"
26
+ :isRounded="false"
26
27
  />
27
28
  </div>
28
29
  </div>
@@ -23,6 +23,7 @@
23
23
  :columns="filteredColumns"
24
24
  :resource="listResource"
25
25
  :record="parentRecord"
26
+ :isRounded="false"
26
27
  />
27
28
  </div>
28
29
  </div>
package/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "@adminforth/foreign-inline-show",
3
- "version": "1.0.1",
3
+ "version": "1.1.1",
4
4
  "description": "AdminForth plugin for adding show of parent item to the child items show page",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "type": "module",
8
8
  "homepage": "https://adminforth.dev/docs/tutorial/Plugins/ForeignInlineShow/",
9
9
  "scripts": {
10
- "build": "tsc && rsync -av --exclude 'node_modules' custom dist/",
11
- "prepare": "npm link adminforth"
10
+ "build": "tsc && rsync -av --exclude 'node_modules' custom dist/"
12
11
  },
13
12
  "repository": {
14
13
  "type": "git",
@@ -26,6 +25,9 @@
26
25
  "semantic-release-slack-bot": "^4.0.2",
27
26
  "typescript": "^5.7.3"
28
27
  },
28
+ "peerDependencies": {
29
+ "adminforth": "^2.24.0"
30
+ },
29
31
  "release": {
30
32
  "plugins": [
31
33
  "@semantic-release/commit-analyzer",
@@ -35,6 +37,7 @@
35
37
  [
36
38
  "semantic-release-slack-bot",
37
39
  {
40
+ "packageName": "@adminforth/foreign-inline-show",
38
41
  "notifyOnSuccess": true,
39
42
  "notifyOnFail": true,
40
43
  "slackIcon": ":package:",