Skip to content

Commit ec8b573

Browse files
BAP-21551: Do not check NodeJS existence and version in runtime operations (#33503)
- changed approach for oro:assets:build command, to execute existing npm run webpack script with proper parameters, instead of directly execution bin file node ./node_modules/.bin/webpack Co-authored-by: timofiyprisyazhnyuk <[email protected]>
1 parent 2ca561a commit ec8b573

File tree

4 files changed

+420
-211
lines changed

4 files changed

+420
-211
lines changed

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
engine-strict=true

dev.lock

+36-37
Original file line numberDiff line numberDiff line change
@@ -3876,16 +3876,16 @@
38763876
},
38773877
{
38783878
"name": "jms/serializer",
3879-
"version": "3.17.1",
3879+
"version": "3.18.0",
38803880
"source": {
38813881
"type": "git",
38823882
"url": "https://github.com/schmittjoh/serializer.git",
3883-
"reference": "190f64b051795d447ec755acbfdb1bff330a6707"
3883+
"reference": "f721ffd76733c24ec1e8fd1e50e44a335fb78bbe"
38843884
},
38853885
"dist": {
38863886
"type": "zip",
3887-
"url": "https://api.github.com/repos/schmittjoh/serializer/zipball/190f64b051795d447ec755acbfdb1bff330a6707",
3888-
"reference": "190f64b051795d447ec755acbfdb1bff330a6707",
3887+
"url": "https://api.github.com/repos/schmittjoh/serializer/zipball/f721ffd76733c24ec1e8fd1e50e44a335fb78bbe",
3888+
"reference": "f721ffd76733c24ec1e8fd1e50e44a335fb78bbe",
38893889
"shasum": ""
38903890
},
38913891
"require": {
@@ -3913,13 +3913,15 @@
39133913
"symfony/filesystem": "^3.0|^4.0|^5.0|^6.0",
39143914
"symfony/form": "^3.0|^4.0|^5.0|^6.0",
39153915
"symfony/translation": "^3.0|^4.0|^5.0|^6.0",
3916+
"symfony/uid": "^5.1|^6.0",
39163917
"symfony/validator": "^3.1.9|^4.0|^5.0|^6.0",
39173918
"symfony/yaml": "^3.3|^4.0|^5.0|^6.0",
39183919
"twig/twig": "~1.34|~2.4|^3.0"
39193920
},
39203921
"suggest": {
39213922
"doctrine/collections": "Required if you like to use doctrine collection types as ArrayCollection.",
39223923
"symfony/cache": "Required if you like to use cache functionality.",
3924+
"symfony/uid": "Required if you'd like to serialize UID objects.",
39233925
"symfony/yaml": "Required if you'd like to use the YAML metadata format."
39243926
},
39253927
"type": "library",
@@ -3958,15 +3960,15 @@
39583960
],
39593961
"support": {
39603962
"issues": "https://github.com/schmittjoh/serializer/issues",
3961-
"source": "https://github.com/schmittjoh/serializer/tree/3.17.1"
3963+
"source": "https://github.com/schmittjoh/serializer/tree/3.18.0"
39623964
},
39633965
"funding": [
39643966
{
39653967
"url": "https://github.com/goetas",
39663968
"type": "github"
39673969
}
39683970
],
3969-
"time": "2021-12-28T20:59:55+00:00"
3971+
"time": "2022-08-06T05:17:44+00:00"
39703972
},
39713973
{
39723974
"name": "knplabs/gaufrette",
@@ -4432,45 +4434,42 @@
44324434
},
44334435
{
44344436
"name": "laminas/laminas-mail",
4435-
"version": "2.16.0",
4437+
"version": "2.17.0",
44364438
"source": {
44374439
"type": "git",
44384440
"url": "https://github.com/laminas/laminas-mail.git",
4439-
"reference": "1ee1a384b96c8af29ecad9b3a7adc27a150ebc49"
4441+
"reference": "bf7504247d5a110d941efa8eb4815f5292a8dc56"
44404442
},
44414443
"dist": {
44424444
"type": "zip",
4443-
"url": "https://api.github.com/repos/laminas/laminas-mail/zipball/1ee1a384b96c8af29ecad9b3a7adc27a150ebc49",
4444-
"reference": "1ee1a384b96c8af29ecad9b3a7adc27a150ebc49",
4445+
"url": "https://api.github.com/repos/laminas/laminas-mail/zipball/bf7504247d5a110d941efa8eb4815f5292a8dc56",
4446+
"reference": "bf7504247d5a110d941efa8eb4815f5292a8dc56",
44454447
"shasum": ""
44464448
},
44474449
"require": {
44484450
"ext-iconv": "*",
4449-
"laminas/laminas-loader": "^2.8",
4451+
"laminas/laminas-loader": "^2.8.0",
44504452
"laminas/laminas-mime": "^2.9.1",
4451-
"laminas/laminas-stdlib": "^3.6",
4452-
"laminas/laminas-validator": "^2.15",
4453-
"php": "^7.3 || ~8.0.0 || ~8.1.0",
4454-
"symfony/polyfill-intl-idn": "^1.24.0",
4455-
"symfony/polyfill-mbstring": "^1.12.0",
4456-
"webmozart/assert": "^1.10"
4457-
},
4458-
"conflict": {
4459-
"zendframework/zend-mail": "*"
4453+
"laminas/laminas-stdlib": "^3.11.0",
4454+
"laminas/laminas-validator": "^2.23.0",
4455+
"php": "~8.0.0 || ~8.1.0",
4456+
"symfony/polyfill-intl-idn": "^1.26.0",
4457+
"symfony/polyfill-mbstring": "^1.16.0",
4458+
"webmozart/assert": "^1.11.0"
44604459
},
44614460
"require-dev": {
4462-
"laminas/laminas-coding-standard": "~1.0.0",
4463-
"laminas/laminas-crypt": "^2.6 || ^3.4",
4464-
"laminas/laminas-db": "^2.13.3",
4465-
"laminas/laminas-servicemanager": "^3.7",
4466-
"phpunit/phpunit": "^9.5.5",
4467-
"psalm/plugin-phpunit": "^0.15.1",
4468-
"symfony/process": "^5.3.7",
4469-
"vimeo/psalm": "^4.7"
4461+
"laminas/laminas-coding-standard": "~2.3.0",
4462+
"laminas/laminas-crypt": "^3.8.0",
4463+
"laminas/laminas-db": "^2.15.0",
4464+
"laminas/laminas-servicemanager": "^3.16.0",
4465+
"phpunit/phpunit": "^9.5.21",
4466+
"psalm/plugin-phpunit": "^0.17.0",
4467+
"symfony/process": "^6.0.11",
4468+
"vimeo/psalm": "^4.26.0"
44704469
},
44714470
"suggest": {
4472-
"laminas/laminas-crypt": "Crammd5 support in SMTP Auth",
4473-
"laminas/laminas-servicemanager": "^2.7.10 || ^3.3.1 when using SMTP to deliver messages"
4471+
"laminas/laminas-crypt": "^3.8 Crammd5 support in SMTP Auth",
4472+
"laminas/laminas-servicemanager": "^3.16 when using SMTP to deliver messages"
44744473
},
44754474
"type": "library",
44764475
"extra": {
@@ -4508,7 +4507,7 @@
45084507
"type": "community_bridge"
45094508
}
45104509
],
4511-
"time": "2022-02-23T21:08:17+00:00"
4510+
"time": "2022-08-06T12:27:12+00:00"
45124511
},
45134512
{
45144513
"name": "laminas/laminas-mime",
@@ -8464,16 +8463,16 @@
84648463
},
84658464
{
84668465
"name": "phpstan/phpdoc-parser",
8467-
"version": "1.6.4",
8466+
"version": "1.7.0",
84688467
"source": {
84698468
"type": "git",
84708469
"url": "https://github.com/phpstan/phpdoc-parser.git",
8471-
"reference": "135607f9ccc297d6923d49c2bcf309f509413215"
8470+
"reference": "367a8d9d5f7da2a0136422d27ce8840583926955"
84728471
},
84738472
"dist": {
84748473
"type": "zip",
8475-
"url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/135607f9ccc297d6923d49c2bcf309f509413215",
8476-
"reference": "135607f9ccc297d6923d49c2bcf309f509413215",
8474+
"url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/367a8d9d5f7da2a0136422d27ce8840583926955",
8475+
"reference": "367a8d9d5f7da2a0136422d27ce8840583926955",
84778476
"shasum": ""
84788477
},
84798478
"require": {
@@ -8503,9 +8502,9 @@
85038502
"description": "PHPDoc parser with support for nullable, intersection and generic types",
85048503
"support": {
85058504
"issues": "https://github.com/phpstan/phpdoc-parser/issues",
8506-
"source": "https://github.com/phpstan/phpdoc-parser/tree/1.6.4"
8505+
"source": "https://github.com/phpstan/phpdoc-parser/tree/1.7.0"
85078506
},
8508-
"time": "2022-06-26T13:09:08+00:00"
8507+
"time": "2022-08-09T12:23:23+00:00"
85098508
},
85108509
{
85118510
"name": "predis/predis",

0 commit comments

Comments
 (0)