Skip to content

Commit 37fe413

Browse files
Update PHP, JavaScript dependencies for InertiaJS 0.1 release
1 parent fc0fbc4 commit 37fe413

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
],
1313
"require": {
1414
"laravel/framework": "^5.8",
15-
"inertiajs/inertia-laravel": "dev-master"
15+
"inertiajs/inertia-laravel": "^0.1"
1616
},
1717
"require-dev": {
1818
"orchestra/testbench": "^3.8"

src/InertiaJsPreset.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,15 @@ protected static function updatePackageArray(array $packages)
2323
{
2424
return array_merge([
2525
'@babel/plugin-syntax-dynamic-import' => '^7.2.0',
26-
'inertia' => 'github:inertiajs/inertia',
27-
'inertia-vue' => 'inertiajs/inertia-vue',
26+
'@inertiajs/inertia' => '^0.1',
27+
'@inertiajs/inertia-vue' => '^0.1',
2828
'vue-template-compiler' => '^2.6.10',
2929
], $packages);
3030
}
3131

3232
protected static function updateBootstrapping()
3333
{
3434
copy(__DIR__.'/inertiajs-stubs/.babelrc', base_path('.babelrc'));
35-
3635
copy(__DIR__.'/inertiajs-stubs/webpack.mix.js', base_path('webpack.mix.js'));
3736

3837
copy(__DIR__.'/inertiajs-stubs/resources/js/app.js', resource_path('js/app.js'));

0 commit comments

Comments
 (0)