@kong/markdown 1.7.25 → 1.7.26-pr.247.7a6d26b.0

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.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +25 -25
package/README.md CHANGED
@@ -15,6 +15,7 @@ Kong's open-source markdown renderer and live editor.
15
15
  - [Testing](#testing)
16
16
  - [Build for production](#build-for-production)
17
17
  - [Committing Changes](#committing-changes)
18
+ - [Approvals](#approvals)
18
19
  - [Package Publishing](#package-publishing)
19
20
 
20
21
  ## TODO
@@ -369,6 +370,14 @@ This will trigger the Commitizen interactive prompt for building your commit mes
369
370
 
370
371
  Additionally, CI will use `commitlint` to validate the commits associated with a PR in the `Lint and Validate` job.
371
372
 
373
+ ### Approvals
374
+
375
+ - All pull requests require review and approval from authorized team members.
376
+ - Automated approvals through workflows are strictly prohibited.
377
+ - There is an exception for automated pull request approvals originating from generated dependency updates that satisfy status checks and other requirements.
378
+ - Protected branches require at least one approval from code owners.
379
+ - All status checks must pass before a pull request may be merged.
380
+
372
381
  ### Package Publishing
373
382
 
374
383
  This repository utilizes [Semantic Release](https://github.com/semantic-release/semantic-release) for automated package publishing and version updates.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kong/markdown",
3
- "version": "1.7.25",
3
+ "version": "1.7.26-pr.247.7a6d26b.0",
4
4
  "description": "Kong's open-source markdown renderer and live editor",
5
5
  "keywords": [
6
6
  "markdown",
@@ -32,25 +32,6 @@
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
- "scripts": {
36
- "dev": "cross-env USE_SANDBOX=true vite",
37
- "build": "pnpm run typecheck && pnpm run build:package && pnpm run build:types && pnpm run build:aliases",
38
- "build:package": "vite build -m production",
39
- "build:types": "vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly",
40
- "build:aliases": "tsc-alias -p './tsconfig.build.json'",
41
- "build:analyzer": "BUILD_VISUALIZER='core/markdown-ui' vite build -m production",
42
- "build:sandbox": "cross-env USE_SANDBOX=true vite build -m production",
43
- "preview": "pnpm run build:sandbox && cross-env USE_SANDBOX=true vite preview",
44
- "typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
45
- "stylelint": "stylelint --allow-empty-input './src/**/*.{css,scss,vue}'",
46
- "stylelint:fix": "stylelint --allow-empty-input './src/**/*.{css,scss,sass,vue}' --fix",
47
- "lint": "eslint",
48
- "lint:fix": "eslint --fix",
49
- "test": "cross-env FORCE_COLOR=1 vitest run",
50
- "test:open": "cross-env FORCE_COLOR=1 vitest --ui",
51
- "semantic-release": "semantic-release",
52
- "commit": "cz"
53
- },
54
35
  "peerDependencies": {
55
36
  "vue": ">= 3.3.13 < 4"
56
37
  },
@@ -75,10 +56,10 @@
75
56
  "markdown-it-task-lists": "^2.1.1",
76
57
  "markdown-it-textual-uml": "^0.17.1",
77
58
  "mermaid": "^11.4.1",
78
- "uuid": "^11.0.4"
59
+ "uuid": "^11.0.5"
79
60
  },
80
61
  "devDependencies": {
81
- "@babel/types": "^7.26.3",
62
+ "@babel/types": "^7.26.5",
82
63
  "@commitlint/cli": "^19.6.1",
83
64
  "@commitlint/config-conventional": "^19.6.0",
84
65
  "@digitalroute/cz-conventional-changelog-for-jira": "^8.0.1",
@@ -95,7 +76,7 @@
95
76
  "@types/markdown-it-attrs": "^4.1.3",
96
77
  "@types/markdown-it-emoji": "^3.0.1",
97
78
  "@types/markdown-it-footnote": "^3.0.4",
98
- "@types/node": "^22.10.5",
79
+ "@types/node": "^22.10.7",
99
80
  "@types/uuid": "^10.0.0",
100
81
  "@vitejs/plugin-vue": "^5.2.1",
101
82
  "@vitest/ui": "^2.1.8",
@@ -112,7 +93,7 @@
112
93
  "postcss-html": "^1.7.0",
113
94
  "rimraf": "^6.0.1",
114
95
  "rollup-plugin-visualizer": "^5.12.0",
115
- "sass": "^1.83.1",
96
+ "sass": "^1.83.4",
116
97
  "semantic-release": "^24.2.1",
117
98
  "shiki": "^1.25.0",
118
99
  "stylelint": "^16.10.0",
@@ -194,5 +175,24 @@
194
175
  "jiraPrepend": "[",
195
176
  "jiraAppend": "]"
196
177
  }
178
+ },
179
+ "scripts": {
180
+ "dev": "cross-env USE_SANDBOX=true vite",
181
+ "build": "pnpm run typecheck && pnpm run build:package && pnpm run build:types && pnpm run build:aliases",
182
+ "build:package": "vite build -m production",
183
+ "build:types": "vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly",
184
+ "build:aliases": "tsc-alias -p './tsconfig.build.json'",
185
+ "build:analyzer": "BUILD_VISUALIZER='core/markdown-ui' vite build -m production",
186
+ "build:sandbox": "cross-env USE_SANDBOX=true vite build -m production",
187
+ "preview": "pnpm run build:sandbox && cross-env USE_SANDBOX=true vite preview",
188
+ "typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
189
+ "stylelint": "stylelint --allow-empty-input './src/**/*.{css,scss,vue}'",
190
+ "stylelint:fix": "stylelint --allow-empty-input './src/**/*.{css,scss,sass,vue}' --fix",
191
+ "lint": "eslint",
192
+ "lint:fix": "eslint --fix",
193
+ "test": "cross-env FORCE_COLOR=1 vitest run",
194
+ "test:open": "cross-env FORCE_COLOR=1 vitest --ui",
195
+ "semantic-release": "semantic-release",
196
+ "commit": "cz"
197
197
  }
198
- }
198
+ }