Skip to content

Commit 261f727

Browse files
authored
Merge pull request #12040 from nanaya/update-laravel-js-loc
Update laravel js localisation library
2 parents 7732162 + 10743b1 commit 261f727

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

composer.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/js/cli/generate-localizations.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,14 @@ function getAllMesssages() {
3939
}
4040

4141
function generateTranslations() {
42-
spawnSync('php', [path.resolve(rootPath, 'artisan'), 'lang:js', '--json', messagesPath], { stdio: 'inherit' });
42+
spawnSync('php', [
43+
path.resolve(rootPath, 'artisan'),
44+
'lang:js',
45+
'--json',
46+
messagesPath,
47+
'--source',
48+
path.resolve(rootPath, 'resources/lang'),
49+
], { stdio: 'inherit' });
4350
}
4451

4552
function writeTranslations(languages) {

0 commit comments

Comments
 (0)