Skip to content

Commit 90e97ec

Browse files
committed
feature #902 Adding %PACKAGE% placeholder + fixing translations (weaverryan)
This PR was merged into the 2.x branch. Discussion ---------- Adding %PACKAGE% placeholder + fixing translations | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | Tickets | None | License | MIT Tracking with Flex updates at symfony/flex#975 Commits ------- 9d21d3a Adding %PACKAGE% placeholder + fixing translations
2 parents 165cae9 + 9d21d3a commit 90e97ec

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

src/React/assets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@hotwired/stimulus": "^3.0.0",
1919
"react": "^18.0",
2020
"react-dom": "^18.0",
21-
"@symfony/ux-react": "path:dist/loader.js"
21+
"@symfony/ux-react": "path:%PACKAGE%/dist/loader.js"
2222
}
2323
},
2424
"peerDependencies": {

src/StimulusBundle/assets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"needsPackageAsADependency": false,
88
"importmap": {
99
"@hotwired/stimulus": "^3.0.0",
10-
"@symfony/stimulus-bundle": "path:dist/loader.js"
10+
"@symfony/stimulus-bundle": "path:%PACKAGE%/dist/loader.js"
1111
}
1212
},
1313
"peerDependencies": {

src/Svelte/assets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"importmap": {
1717
"@hotwired/stimulus": "^3.0.0",
1818
"svelte/internal": "^3.0",
19-
"@symfony/ux-svelte": "path:dist/loader.js"
19+
"@symfony/ux-svelte": "path:%PACKAGE%/dist/loader.js"
2020
}
2121
},
2222
"peerDependencies": {

src/Translator/assets/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
"symfony": {
99
"importmap": {
1010
"intl-messageformat": "^10.2.5",
11-
"@symfony/ux-translator": "path:dist/translator_controller.js",
12-
"@app/translations": "var/translations/index.js"
11+
"@symfony/ux-translator": "path:%PACKAGE%/dist/translator_controller.js",
12+
"@app/translations": "path:var/translations/index.js",
13+
"@app/translations/configuration": "path:var/translations/configuration.js"
1314
}
1415
},
1516
"peerDependencies": {

src/Vue/assets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"package": "vue/dist/vue.esm-bundler.js",
2121
"version": "^3.0"
2222
},
23-
"@symfony/ux-vue": "path:dist/loader.js"
23+
"@symfony/ux-vue": "path:%PACKAGE%/dist/loader.js"
2424
}
2525
},
2626
"peerDependencies": {

0 commit comments

Comments
 (0)