Skip to content

Commit

Permalink
🎨 Improve code structure
Browse files Browse the repository at this point in the history
  • Loading branch information
siguici committed Aug 23, 2023
1 parent 46c79b3 commit 8bc3477
Show file tree
Hide file tree
Showing 23 changed files with 248 additions and 124 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"psr-4": {
"Sikessem\\UI\\": "src/"
},
"files": ["src/UI.php"]
"files": ["src/ui.php"]
},
"autoload-dev": {
"psr-4": {
Expand All @@ -61,9 +61,9 @@
},
"extra": {
"laravel": {
"providers": ["Sikessem\\UI\\UIServiceProvider"],
"providers": ["Sikessem\\UI\\ServiceProvider"],
"aliases": {
"UI": "Sikessem\\UI\\UIFacade"
"UI": "Sikessem\\UI\\Facade"
},
"dont-discover": []
},
Expand Down
52 changes: 26 additions & 26 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@
"main": "./dist/index.js",
"types": "./plugin/types/index.d.ts",
"exports": {
".": {
"import": {
"min": "./dist/index.min.js",
"development": "./dist/index.mjs",
"production": "./dist/index.prod.mjs",
"default": "./dist/index.mjs"
},
"require": {
"development": "./dist/index.cjs",
"production": "./dist/index.prod.cjs",
"default": "./dist/index.cjs"
".": {
"import": {
"min": "./dist/index.min.js",
"development": "./dist/index.mjs",
"production": "./dist/index.prod.mjs",
"default": "./dist/index.mjs"
},
"require": {
"development": "./dist/index.cjs",
"production": "./dist/index.prod.cjs",
"default": "./dist/index.cjs"
}
}
}
},
"scripts": {
"build": "tsm scripts/build.ts",
Expand All @@ -66,7 +66,7 @@
},
"devDependencies": {
"@tailwindcss/nesting": "0.0.0-insiders.565cd3e",
"@types/node": "^20.5.2",
"@types/node": "^20.5.3",
"@vitest/coverage-istanbul": "^0.34.2",
"autoprefixer": "^10.4.15",
"brotli-size": "^4.0.0",
Expand Down
1 change: 1 addition & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
</include>
</source>
<php>
<env name="APP_DEBUG" value="false"/>
<env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>
</php>
</phpunit>
46 changes: 23 additions & 23 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8bc3477

Please sign in to comment.