chore: update project state and prepare for image support development
Some checks failed
Test Suite / unit-tests (3.11) (push) Has been cancelled
Test Suite / unit-tests (3.12) (push) Has been cancelled
Test Suite / code-quality (push) Has been cancelled
Test Suite / security-scan (push) Has been cancelled
Test Suite / integration-tests (push) Has been cancelled
Test Suite / e2e-tests (push) Has been cancelled
Test Suite / performance-tests (push) Has been cancelled
Test Suite / test-summary (push) Has been cancelled
Some checks failed
Test Suite / unit-tests (3.11) (push) Has been cancelled
Test Suite / unit-tests (3.12) (push) Has been cancelled
Test Suite / code-quality (push) Has been cancelled
Test Suite / security-scan (push) Has been cancelled
Test Suite / integration-tests (push) Has been cancelled
Test Suite / e2e-tests (push) Has been cancelled
Test Suite / performance-tests (push) Has been cancelled
Test Suite / test-summary (push) Has been cancelled
- Add comprehensive image test document with various image types - Update project structure with development artifacts - Prepare foundation for image support enhancement phase - Include test files for validating image editing workflows 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
22
node_modules/jest-changed-files/LICENSE
generated
vendored
Normal file
22
node_modules/jest-changed-files/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
Copyright Contributors to the Jest project.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
95
node_modules/jest-changed-files/README.md
generated
vendored
Normal file
95
node_modules/jest-changed-files/README.md
generated
vendored
Normal file
@@ -0,0 +1,95 @@
|
||||
# jest-changed-files
|
||||
|
||||
A module used internally by Jest to check which files have changed since you last committed in git or hg.
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
$ npm install --save jest-changed-files
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
### `getChangedFilesForRoots(roots: Array<string>, options: Options): Promise<ChangedFiles>`
|
||||
|
||||
Get the list of files and repos that have changed since the last commit.
|
||||
|
||||
#### Parameters
|
||||
|
||||
roots: Array of string paths gathered from [jest roots](https://jestjs.io/docs/configuration#roots-arraystring).
|
||||
|
||||
options: Object literal with keys
|
||||
|
||||
- lastCommit: boolean
|
||||
- withAncestor: boolean
|
||||
- changedSince: string
|
||||
|
||||
### Returns
|
||||
|
||||
A Promise of Object literal with keys
|
||||
|
||||
- changedFiles: Set\<string>
|
||||
- repos:
|
||||
- git: Set\<string>
|
||||
- hg: Set\<string>
|
||||
|
||||
### findRepos(roots: Array<string>): Promise<Repos>
|
||||
|
||||
Get a set of git and hg repositories.
|
||||
|
||||
#### Parameters
|
||||
|
||||
roots: Array of string paths gathered from [jest roots](https://jestjs.io/docs/configuration#roots-arraystring).
|
||||
|
||||
### Returns
|
||||
|
||||
A Promise of Object literal with keys
|
||||
|
||||
- git: Set\<string>
|
||||
- hg: Set\<string>
|
||||
|
||||
## Usage
|
||||
|
||||
```javascript
|
||||
import {getChangedFilesForRoots} from 'jest-changed-files';
|
||||
|
||||
getChangedFilesForRoots(['/path/to/test'], {
|
||||
lastCommit: true,
|
||||
withAncestor: true,
|
||||
}).then(files => {
|
||||
/*
|
||||
{
|
||||
repos: [],
|
||||
changedFiles: []
|
||||
}
|
||||
*/
|
||||
});
|
||||
```
|
||||
|
||||
```javascript
|
||||
import {getChangedFilesForRoots} from 'jest-changed-files';
|
||||
|
||||
getChangedFilesForRoots(['/path/to/test'], {
|
||||
changedSince: 'main',
|
||||
}).then(files => {
|
||||
/*
|
||||
{
|
||||
repos: [],
|
||||
changedFiles: []
|
||||
}
|
||||
*/
|
||||
});
|
||||
```
|
||||
|
||||
```javascript
|
||||
import {findRepos} from 'jest-changed-files';
|
||||
|
||||
findRepos(['/path/to/test']).then(repos => {
|
||||
/*
|
||||
{
|
||||
git: Set<Path>,
|
||||
hg: Set<Path>
|
||||
}
|
||||
*/
|
||||
});
|
||||
```
|
||||
33
node_modules/jest-changed-files/package.json
generated
vendored
Normal file
33
node_modules/jest-changed-files/package.json
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "jest-changed-files",
|
||||
"version": "30.2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/jestjs/jest.git",
|
||||
"directory": "packages/jest-changed-files"
|
||||
},
|
||||
"license": "MIT",
|
||||
"main": "./build/index.js",
|
||||
"types": "./build/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./build/index.d.ts",
|
||||
"require": "./build/index.js",
|
||||
"import": "./build/index.mjs",
|
||||
"default": "./build/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"execa": "^5.1.1",
|
||||
"jest-util": "30.2.0",
|
||||
"p-limit": "^3.1.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"gitHead": "855864e3f9751366455246790be2bf912d4d0dac"
|
||||
}
|
||||
Reference in New Issue
Block a user