Laravel Localization loader for webpack. Convert Laravel Translation strings to JavaScript Objects.
npm install laravel-localization-loader - Support both Laravel PHP and JSON translation files.
- 100% test coverage.
- Only has two dependencies: json-loader and php-array-loader.
``shell`
npm install laravel-localization-loader --save-dev
or
`shell`
yarn add laravel-localization-loader --dev
`jsresources/lang
// webpack.config.js
module.exports = {
module: {
rules: [
{
// Matches all PHP or JSON files in directory.`
test: /resources(\\|\/)lang.+\.(php|json)$/,
loader: 'laravel-localization-loader',
}
]
}
}
`jsresources/lang
// webpack.mix.js
mix.webpackConfig({
module: {
rules: [
{
// Matches all PHP or JSON files in directory.`
test: /resources(\\|\/)lang.+\.(php|json)$/,
loader: 'laravel-localization-loader',
}
]
}
});
First, you will need to install Lang.js then you may want to create a messages.js files that look as follow:
`js`
// messages.js
export default {
// The key format should be: 'locale.filename'.
'en.messages': require('../../resources/lang/en/messages.php'),
'es.messages': require('../../resources/lang/es/messages.php'),
'en.auth': require('../../resources/lang/en/auth.php'),
'es.auth': require('../../resources/lang/es/auth.php'),
}
Then somewhere else in your awesome app:
`js
// page.js
import Lang from 'lang.js'
import messages from './messages'
const lang = new Lang({ messages })
lang.get('messages.hello')
`
Profit!
1. Clone and fork this repo.
2. Install dependencies: yarn or npm install.
3. Run tests.
4. Prepare a pull request.
- yarn test – to run all tests.yarn test -- --watch
- – to run all tests in watch mode.
#### Coverage
- yarn test -- --coverage – to run all tests with coverage.yarn test -- --coverage --watch
- – to run all tests with coverage in watch mode.
1. Bump package version: yarn version --new-version x.x.x -m 'Version %s.'.npm publish
2. Publish to NPM registry: .git push origin --tags`.
3. Push new tag:
Made with :heart: by Rubens Mariuzzo.