Skip to content

Commit 05ff7ac

Browse files
Remove lodash import (#247)
* Update bootstrap.js * Update tests.yml * Update composer.json --------- Co-authored-by: Dries Vints <[email protected]>
1 parent 00d427c commit 05ff7ac

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ jobs:
4343
composer update --prefer-dist --no-interaction --no-progress
4444
4545
- name: Execute tests
46-
run: vendor/bin/phpunit --verbose
46+
run: vendor/bin/phpunit

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"illuminate/validation": "^9.21|^10.0"
1818
},
1919
"require-dev": {
20-
"orchestra/testbench": "^7.0|^8.0"
20+
"orchestra/testbench": "^7.0|^8.0",
21+
"phpunit/phpunit": "^9.3"
2122
},
2223
"autoload": {
2324
"psr-4": {

src/Presets/bootstrap-stubs/bootstrap.js

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
import _ from 'lodash';
2-
window._ = _;
3-
41
import 'bootstrap';
52

63
/**

0 commit comments

Comments
 (0)