Skip to content

Commit ea891c8

Browse files
committed
minor #2595 Normalize package.json files, to prepare publication on NPM (Kocal)
This PR was squashed before being merged into the 2.x branch. Discussion ---------- Normalize package.json files, to prepare publication on NPM | Q | A | ------------- | --- | Bug fix? | no | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | Issues | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead --> | License | MIT <!-- Replace this notice by a description of your feature/bugfix. This will help reviewers and should be a good start for the documentation. Additionally (see https://symfony.com/releases): - Always add tests and ensure they pass. - For new features, provide some code snippets to help understand usage. - Features and deprecations must be submitted against branch main. - Changelog entry should follow https://symfony.com/doc/current/contributing/code/conventions.html#writing-a-changelog-entry - Never break backward compatibility (see https://symfony.com/bc). --> This is a first iteration for #2575: rework our `package.json` files in order to make them more "friendly" and work on npm. Next steps: 1. Add some verifications, to ensure PHP and JS versions of a same package are identical (and so 100% compatible) 2. See how we can deploy JS packages when creating a new UX releases. I'm thinking about a full automated process using the CI with a workflow listening on tag creation, which will be responsible to upgrade the `version` from `package.json` files, commit, push, and publish to npm) 3. Check if we need to manually create the packages on npm before trying to publishing them Commits ------- 87bc2b8 Set Map/assets/packages.json private 68a0e8a Remove tree from repository URL in each package.json bea8d4e Add README.md file for each UX packages assets 7162520 Add LICENSE file for each UX packages assets 4de9061 Normalize package.json files, to prepare publication on NPM
2 parents 5c144e5 + 87bc2b8 commit ea891c8

File tree

53 files changed

+735
-25
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+735
-25
lines changed

src/Autocomplete/assets/LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2020-present Fabien Potencier
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is furnished
8+
to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

src/Autocomplete/assets/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# @symfony/ux-autocomplete
2+
3+
Javascript-powered auto-completion functionality for your Symfony forms!
4+
5+
**This package can't be used on its own, and requires the PHP package [symfony/ux-autocomplete](https://github.com/symfony/ux/tree/2.x/src/Autocomplete).**
6+
7+
## Resources
8+
9+
- [Documentation](https://symfony.com/bundles/ux-autocomplete/current/index.html)
10+
- [Report issues](https://github.com/symfony/ux/issues) and
11+
[send Pull Requests](https://github.com/symfony/ux/pulls)
12+
in the [main Symfony UX repository](https://github.com/symfony/ux)

src/Autocomplete/assets/package.json

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
{
22
"name": "@symfony/ux-autocomplete",
3-
"description": "JavaScript-powered autocompletion functionality for forms.",
3+
"description": "JavaScript Autocomplete functionality for Symfony",
4+
"license": "MIT",
5+
"version": "2.23.0",
6+
"keywords": [
7+
"symfony-ux"
8+
],
9+
"homepage": "https://ux.symfony.com/autocomplete",
10+
"repository": "https://github.com/symfony/ux-autocomplete",
11+
"type": "module",
12+
"files": [
13+
"dist"
14+
],
415
"main": "dist/controller.js",
516
"types": "dist/controller.d.ts",
6-
"version": "1.0.0",
7-
"license": "MIT",
817
"scripts": {
918
"build": "node ../../../bin/build_package.js .",
1019
"watch": "node ../../../bin/build_package.js . --watch",

src/Chartjs/assets/LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2020-present Fabien Potencier
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is furnished
8+
to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

src/Chartjs/assets/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# @symfony/ux-chartjs
2+
3+
Chart.js integration for Symfony.
4+
5+
**This package can't be used on its own, and requires the PHP package [symfony/ux-chartjs](https://github.com/symfony/ux/tree/2.x/src/Chartjs).**
6+
7+
## Resources
8+
9+
- [Documentation](https://symfony.com/bundles/ux-autocomplete/current/index.html)
10+
- [Report issues](https://github.com/symfony/ux/issues) and
11+
[send Pull Requests](https://github.com/symfony/ux/pulls)
12+
in the [main Symfony UX repository](https://github.com/symfony/ux)

src/Chartjs/assets/package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,16 @@
22
"name": "@symfony/ux-chartjs",
33
"description": "Chart.js integration for Symfony",
44
"license": "MIT",
5-
"version": "1.1.0",
5+
"version": "2.23.0",
6+
"keywords": [
7+
"symfony-ux"
8+
],
9+
"homepage": "https://ux.symfony.com/chartjs",
10+
"repository": "https://github.com/symfony/ux-chartjs",
611
"type": "module",
12+
"files": [
13+
"dist"
14+
],
715
"main": "dist/controller.js",
816
"types": "dist/controller.d.ts",
917
"scripts": {

src/Cropperjs/assets/LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2020-present Fabien Potencier
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is furnished
8+
to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

src/Cropperjs/assets/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# @symfony/ux-cropperjs
2+
3+
Cropper.js integration for Symfony.
4+
5+
**This package can't be used on its own, and requires the PHP package [symfony/ux-cropperjs](https://github.com/symfony/ux/tree/2.x/src/Cropperjs).**
6+
7+
## Resources
8+
9+
- [Documentation](https://symfony.com/bundles/ux-autocomplete/current/index.html)
10+
- [Report issues](https://github.com/symfony/ux/issues) and
11+
[send Pull Requests](https://github.com/symfony/ux/pulls)
12+
in the [main Symfony UX repository](https://github.com/symfony/ux)

src/Cropperjs/assets/package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,16 @@
22
"name": "@symfony/ux-cropperjs",
33
"description": "Cropper.js integration for Symfony",
44
"license": "MIT",
5-
"version": "1.1.0",
5+
"version": "2.23.0",
6+
"keywords": [
7+
"symfony-ux"
8+
],
9+
"homepage": "https://ux.symfony.com/cropperjs",
10+
"repository": "https://github.com/symfony/ux-cropperjs",
11+
"type": "module",
12+
"files": [
13+
"dist"
14+
],
615
"main": "dist/controller.js",
716
"types": "dist/controller.d.ts",
817
"config": {

src/Dropzone/assets/LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2020-present Fabien Potencier
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is furnished
8+
to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

src/Dropzone/assets/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# @symfony/ux-dropzone
2+
3+
File input dropzones for Symfony Forms.
4+
5+
**This package can't be used on its own, and requires the PHP package [symfony/ux-dropzone](https://github.com/symfony/ux/tree/2.x/src/Dropzone).**
6+
7+
## Resources
8+
9+
- [Documentation](https://symfony.com/bundles/ux-autocomplete/current/index.html)
10+
- [Report issues](https://github.com/symfony/ux/issues) and
11+
[send Pull Requests](https://github.com/symfony/ux/pulls)
12+
in the [main Symfony UX repository](https://github.com/symfony/ux)

src/Dropzone/assets/package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,16 @@
22
"name": "@symfony/ux-dropzone",
33
"description": "File input dropzones for Symfony Forms",
44
"license": "MIT",
5-
"version": "1.1.0",
5+
"version": "2.23.0",
6+
"keywords": [
7+
"symfony-ux"
8+
],
9+
"homepage": "https://ux.symfony.com/dropzone",
10+
"repository": "https://github.com/symfony/ux-dropzone",
11+
"type": "module",
12+
"files": [
13+
"dist"
14+
],
615
"main": "dist/controller.js",
716
"types": "dist/controller.d.ts",
817
"config": {

src/LazyImage/assets/LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2020-present Fabien Potencier
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is furnished
8+
to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

src/LazyImage/assets/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# @symfony/ux-lazy-image
2+
3+
Lazy image loader and utilities for Symfony.
4+
5+
**This package can't be used on its own, and requires the PHP package [symfony/ux-lazy-image](https://github.com/symfony/ux/tree/2.x/src/LazyImage).**
6+
7+
## Resources
8+
9+
- [Documentation](https://symfony.com/bundles/ux-autocomplete/current/index.html)
10+
- [Report issues](https://github.com/symfony/ux/issues) and
11+
[send Pull Requests](https://github.com/symfony/ux/pulls)
12+
in the [main Symfony UX repository](https://github.com/symfony/ux)

src/LazyImage/assets/package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,16 @@
22
"name": "@symfony/ux-lazy-image",
33
"description": "Lazy image loader and utilities for Symfony",
44
"license": "MIT",
5-
"version": "1.1.0",
5+
"version": "2.23.0",
6+
"keywords": [
7+
"symfony-ux"
8+
],
9+
"homepage": "https://ux.symfony.com/lazy-image",
10+
"repository": "https://github.com/symfony/ux-lazy-image",
11+
"type": "module",
12+
"files": [
13+
"dist"
14+
],
615
"main": "dist/controller.js",
716
"types": "dist/controller.d.ts",
817
"scripts": {

src/LiveComponent/assets/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021-present Fabien Potencier
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is furnished
10+
to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

src/LiveComponent/assets/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# @symfony/ux-live-component
2+
3+
Live Component: bring server-side re-rendering & model binding to any element.
4+
5+
**This package can't be used on its own, and requires the PHP package [symfony/ux-live-component](https://github.com/symfony/ux/tree/2.x/src/LiveComponent).**
6+
7+
## Resources
8+
9+
- [Documentation](https://symfony.com/bundles/ux-autocomplete/current/index.html)
10+
- [Report issues](https://github.com/symfony/ux/issues) and
11+
[send Pull Requests](https://github.com/symfony/ux/pulls)
12+
in the [main Symfony UX repository](https://github.com/symfony/ux)

src/LiveComponent/assets/package.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
11
{
22
"name": "@symfony/ux-live-component",
33
"description": "Live Component: bring server-side re-rendering & model binding to any element.",
4+
"license": "MIT",
5+
"version": "2.23.0",
6+
"keywords": [
7+
"symfony-ux",
8+
"twig",
9+
"components"
10+
],
11+
"homepage": "https://ux.symfony.com/live-component",
12+
"repository": "https://github.com/symfony/ux-live-component",
13+
"type": "module",
14+
"files": [
15+
"dist"
16+
],
417
"main": "dist/live_controller.js",
518
"types": "dist/live_controller.d.ts",
6-
"version": "1.0.0",
719
"config": {
820
"css_source": "styles/live.css"
921
},
10-
"license": "MIT",
1122
"scripts": {
1223
"build": "node ../../../bin/build_package.js .",
1324
"watch": "node ../../../bin/build_package.js . --watch",

src/Map/assets/LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2024-present Fabien Potencier
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is furnished
8+
to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

src/Map/assets/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# @symfony/ux-map
2+
3+
Easily embed interactive maps in your Symfony application.
4+
5+
**This package can't be used on its own, and requires the PHP package [symfony/ux-map](https://github.com/symfony/ux/tree/2.x/src/Map).**
6+
7+
## Resources
8+
9+
- [Documentation](https://symfony.com/bundles/ux-autocomplete/current/index.html)
10+
- [Report issues](https://github.com/symfony/ux/issues) and
11+
[send Pull Requests](https://github.com/symfony/ux/pulls)
12+
in the [main Symfony UX repository](https://github.com/symfony/ux)

src/Map/assets/package.json

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
11
{
22
"name": "@symfony/ux-map",
3-
"description": "Integrates interactive maps in your Symfony applications",
3+
"description": "Easily embed interactive maps in your Symfony application.",
4+
"private": true,
45
"license": "MIT",
5-
"version": "1.0.0",
6+
"version": "2.23.0",
7+
"keywords": [
8+
"symfony-ux",
9+
"map",
10+
"markers",
11+
"maps"
12+
],
13+
"homepage": "https://ux.symfony.com/map",
14+
"repository": "https://github.com/symfony/ux-map",
615
"type": "module",
16+
"files": [
17+
"dist"
18+
],
719
"main": "dist/abstract_map_controller.js",
820
"types": "dist/abstract_map_controller.d.ts",
921
"scripts": {

src/Map/src/Bridge/Google/assets/package.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,18 @@
22
"name": "@symfony/ux-google-map",
33
"description": "GoogleMaps bridge for Symfony UX Map, integrate interactive maps in your Symfony applications",
44
"license": "MIT",
5-
"version": "1.0.0",
5+
"version": "2.23.0",
6+
"keywords": [
7+
"symfony-ux",
8+
"google-maps",
9+
"map"
10+
],
11+
"homepage": "https://ux.symfony.com/map",
12+
"repository": "https://github.com/symfony/ux-google-map",
613
"type": "module",
14+
"files": [
15+
"dist"
16+
],
717
"main": "dist/map_controller.js",
818
"types": "dist/map_controller.d.ts",
919
"scripts": {

0 commit comments

Comments
 (0)