Skip to content

Commit 0dd47ba

Browse files
dependabot[bot]tsi
andauthored
chore(deps): bump @conventional-changelog/git-client, git-raw-commits and git-semver-tags (#1008)
* chore(deps): bump @conventional-changelog/git-client, git-raw-commits and git-semver-tags Removes [@conventional-changelog/git-client](https://github.com/conventional-changelog/conventional-changelog/tree/HEAD/packages/git-client). It's no longer used after updating ancestor dependencies [@conventional-changelog/git-client](https://github.com/conventional-changelog/conventional-changelog/tree/HEAD/packages/git-client), [git-raw-commits](https://github.com/conventional-changelog/conventional-changelog/tree/HEAD/packages/git-raw-commits) and [git-semver-tags](https://github.com/conventional-changelog/conventional-changelog/tree/HEAD/packages/git-semver-tags). These dependencies need to be updated together. Removes `@conventional-changelog/git-client` Updates `git-raw-commits` from 5.0.0 to 5.0.1 - [Release notes](https://github.com/conventional-changelog/conventional-changelog/releases) - [Changelog](https://github.com/conventional-changelog/conventional-changelog/blob/master/packages/git-raw-commits/CHANGELOG.md) - [Commits](https://github.com/conventional-changelog/conventional-changelog/commits/git-raw-commits-v5.0.1/packages/git-raw-commits) Updates `git-semver-tags` from 8.0.0 to 8.0.1 - [Release notes](https://github.com/conventional-changelog/conventional-changelog/releases) - [Changelog](https://github.com/conventional-changelog/conventional-changelog/blob/master/packages/git-semver-tags/CHANGELOG.md) - [Commits](https://github.com/conventional-changelog/conventional-changelog/commits/git-semver-tags-v8.0.1/packages/git-semver-tags) --- updated-dependencies: - dependency-name: "@conventional-changelog/git-client" dependency-version: dependency-type: indirect - dependency-name: git-raw-commits dependency-version: 5.0.1 dependency-type: indirect - dependency-name: git-semver-tags dependency-version: 8.0.1 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> * chore(deps): bump @conventional-changelog/git-client, git-raw-commits and git-semver-tags Removes [@conventional-changelog/git-client](https://github.com/conventional-changelog/conventional-changelog/tree/HEAD/packages/git-client). It's no longer used after updating ancestor dependencies [@conventional-changelog/git-client](https://github.com/conventional-changelog/conventional-changelog/tree/HEAD/packages/git-client), [git-raw-commits](https://github.com/conventional-changelog/conventional-changelog/tree/HEAD/packages/git-raw-commits) and [git-semver-tags](https://github.com/conventional-changelog/conventional-changelog/tree/HEAD/packages/git-semver-tags). These dependencies need to be updated together. Removes `@conventional-changelog/git-client` Updates `git-raw-commits` from 5.0.0 to 5.0.1 - [Release notes](https://github.com/conventional-changelog/conventional-changelog/releases) - [Changelog](https://github.com/conventional-changelog/conventional-changelog/blob/master/packages/git-raw-commits/CHANGELOG.md) - [Commits](https://github.com/conventional-changelog/conventional-changelog/commits/git-raw-commits-v5.0.1/packages/git-raw-commits) Updates `git-semver-tags` from 8.0.0 to 8.0.1 - [Release notes](https://github.com/conventional-changelog/conventional-changelog/releases) - [Changelog](https://github.com/conventional-changelog/conventional-changelog/blob/master/packages/git-semver-tags/CHANGELOG.md) - [Commits](https://github.com/conventional-changelog/conventional-changelog/commits/git-semver-tags-v8.0.1/packages/git-semver-tags) --- updated-dependencies: - dependency-name: "@conventional-changelog/git-client" dependency-version: dependency-type: indirect - dependency-name: git-raw-commits dependency-version: 5.0.1 dependency-type: indirect - dependency-name: git-semver-tags dependency-version: 8.0.1 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> * chore: build styles * chore: netlify nvmrc --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tsachi Shlidor <tsachi.shlidor@cloudinary.com>
1 parent 7af6a2a commit 0dd47ba

4 files changed

Lines changed: 34 additions & 37 deletions

File tree

AGENTS.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@ Use these to validate changes. Prefer file-scoped commands when possible to avoi
2727

2828
```bash
2929
# Lint source
30-
pnpm run lint
30+
npm run lint
3131

3232
# Unit tests - full suite
33-
pnpm run test:unit
33+
npm run test:unit
3434

3535
# Unit tests - single file
36-
pnpm run vitest run --config .config/vitest.config.ts test/unit/path/to/file.test.js
36+
npm run vitest run --config .config/vitest.config.ts test/unit/path/to/file.test.js
3737

3838
# E2E tests (use sparingly)
39-
pnpm run test:e2e
39+
npm run test:e2e
4040

4141
# Build (use when explicitly needed)
42-
pnpm run build
43-
pnpm run build-es
42+
npm run build
43+
npm run build-es
4444
```
4545

4646
## Boundaries
@@ -101,7 +101,7 @@ pnpm run build-es
101101
- **Implement only what's asked**: Stick strictly to the user's explicit query. Do not add unsolicited features, refactor unrelated code, or introduce "improvements" without approval. If something seems missing, suggest it clearly but wait for confirmation.
102102
- **Suggest, don't impose**: Prefix suggestions with `[SUGGESTION]` and explain trade-offs, but never apply them without explicit user consent.
103103
- **Ground in evidence**: Base advice on observable facts from the repo - reference specific files, lines, or docs. Avoid vague claims like "best practices" without context.
104-
- **Prioritize verification**: End responses with testable steps or questions to validate the solution (e.g., "Run pnpm run test:unit to confirm"). Encourage user testing, especially for UI/visual changes.
104+
- **Prioritize verification**: End responses with testable steps or questions to validate the solution (e.g., "Run npm run test:unit to confirm"). Encourage user testing, especially for UI/visual changes.
105105

106106
### Communication & Iteration
107107
- **Test in real life**: Don't assume code works - have users test and approve
@@ -179,7 +179,7 @@ function buildVideoUrl(source) {
179179
## PR Checklist
180180

181181
Before considering a change complete:
182-
- Lint passes: `pnpm exec eslint src`
182+
- Lint passes: `npm exec eslint src`
183183
- Unit tests pass for affected code
184184
- Diff is small and focused - include a brief summary of what changed and why
185185
- Remove any debug logs or temporary comments

docs/es-modules/.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
24

docs/es-modules/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"version": "0.0.1",
55
"scripts": {
6-
"prepare-player": "cd ../.. && npm i && npm run build-es",
6+
"prepare-player": "cd ../.. && npm i && npm run build && npm run build-es",
77
"install-player": "npm i ../.. --no-save",
88
"prepare": "npm run prepare-player && npm run install-player",
99
"update-edge": "npm i",

package-lock.json

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

0 commit comments

Comments
 (0)