Skip to content

Commit d069f5f

Browse files
authored
ci: fix @vercel/examples-ui publish (2) (#1352)
### Description More references of deleted dir that makes the publish fail 💀 2f34205 ### Demo URL <!-- Provide a URL to a live deployment where we can test your PR. If a demo isn't possible feel free to omit this section. --> ### Type of Change - [ ] New Example - [ ] Example updates (Bug fixes, new features, etc.) - [ ] Other (changes to the codebase, but not to examples) ### New Example Checklist - [ ] 🛫 `npm run new-example` was used to create the example - [ ] 📚 The template wasn't used but I carefuly read the [Adding a new example](https://github.com/vercel/examples#adding-a-new-example) steps and implemented them in the example - [ ] 📱 Is it responsive? Are mobile and tablets considered?
1 parent 2ef84e7 commit d069f5f

File tree

5 files changed

+7
-16
lines changed

5 files changed

+7
-16
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@vercel/examples-ui': patch
3+
---
4+
5+
Export layout, allow react 19

internal/packages/playwright/scripts/generate-tests.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ async function generateTests() {
1919
const getFiles = (folder: string): Promise<[string, string[]]> =>
2020
fs.readdir(path.join(rootDir, folder)).then((paths) => [folder, paths])
2121
const examplesBySection = await Promise.all([
22-
getFiles('edge-functions'),
2322
getFiles('edge-middleware'),
2423
getFiles('solutions'),
2524
getFiles('starter'),

internal/packages/ui/CHANGELOG.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
# @vercel/examples-ui
22

3-
## 2.0.4
4-
5-
### Patch Changes
6-
7-
- 6e341f6b: Export layout, allow react 19
8-
93
## 2.0.3
104

115
### Patch Changes

internal/packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vercel/examples-ui",
3-
"version": "2.0.4",
3+
"version": "2.0.3",
44
"license": "MIT",
55
"scripts": {
66
"dev": "pnpm build:swc -w",

internal/scripts/lib/update-changed-templates.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,7 @@ import path from 'path'
22
import log from './log'
33
import updateTemplate from './contentful/update-template'
44

5-
const DIRS = [
6-
'edge-functions',
7-
'edge-middleware',
8-
'rust',
9-
'solutions',
10-
'starter',
11-
'storage',
12-
]
5+
const DIRS = ['edge-middleware', 'rust', 'solutions', 'starter', 'storage']
136
const IS_README = /readme\.md$/i
147

158
export default async function updateChangedTemplates(changedFiles: string[]) {

0 commit comments

Comments
 (0)