@symfony/ux-dropzone 2.30.0 → 2.32.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.
- package/README.md +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ composer require symfony/ux-dropzone:2.23.0
|
|
|
14
14
|
npm add @symfony/ux-dropzone@2.23.0
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
**Tip:** Your `package.json` file will be automatically modified by [Flex](https://github.com/symfony/flex) when installing or upgrading a PHP package. To prevent this behavior, ensure to **use at least Flex 1.22.0 or 2.5.0**, and run `composer config extra.symfony
|
|
17
|
+
**Tip:** Your `package.json` file will be automatically modified by [Flex](https://github.com/symfony/flex) when installing or upgrading a PHP package. To prevent this behavior, ensure to **use at least Flex 1.22.0 or 2.5.0**, and run `composer config --json "extra.symfony/flex.synchronize_package_json" false`.
|
|
18
18
|
|
|
19
19
|
## Resources
|
|
20
20
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@symfony/ux-dropzone",
|
|
3
3
|
"description": "File input dropzones for Symfony Forms",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "2.
|
|
5
|
+
"version": "2.32.0",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"symfony-ux"
|
|
8
8
|
],
|
|
@@ -51,8 +51,9 @@
|
|
|
51
51
|
"build": "tsx ../../../bin/build_package.ts .",
|
|
52
52
|
"watch": "tsx ../../../bin/build_package.ts . --watch",
|
|
53
53
|
"test": "pnpm run test:unit && pnpm run test:browser",
|
|
54
|
-
"test:unit": "../../../bin/
|
|
55
|
-
"test:browser": "
|
|
54
|
+
"test:unit": "../../../bin/unit_test_package.sh .",
|
|
55
|
+
"test:browser": "playwright test",
|
|
56
|
+
"test:browser:ui": "playwright test --ui",
|
|
56
57
|
"check": "biome check",
|
|
57
58
|
"ci": "biome ci"
|
|
58
59
|
}
|