Skip to content

Commit 5629c1d

Browse files
authored
Merge pull request #114 from dotkernel/1.0-clean
1.0 clean
2 parents d9cb2a4 + b84f8e8 commit 5629c1d

13 files changed

Lines changed: 26 additions & 89 deletions

File tree

.gitignore

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,14 @@ fabric.properties
3636
composer.phar
3737
/vendor/
3838

39-
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
40-
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
4139
composer.lock
40+
package-lock.json
4241

4342
/node_modules
44-
package-lock.json
43+
44+
# Vite build outputs (generated by .github/workflows/build-assets.yml)
45+
/public/css/app.css
46+
/public/js/app.js
4547

4648
# ZendStudio project files
4749
.project

package.json

Lines changed: 4 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -23,43 +23,17 @@
2323
},
2424
"homepage": "https://github.com/dotkernel/light#readme",
2525
"devDependencies": {
26-
"@rollup/plugin-alias": "^6.0.0",
26+
"@popperjs/core": "^2.11.8",
2727
"autoprefixer": "^10.4.20",
28-
"babel-core": "^7.0.0-bridge.0",
29-
"babel-loader": "^10.0.0",
30-
"babel-preset-env": "^1.7.0",
3128
"bootstrap": "^5.3.3",
32-
"bootstrap-fileinput": "^5.5.4",
33-
"bootstrap-sass": "^3.4.3",
3429
"cross-env": "^10.0.0",
35-
"css-loader": "^7.1.2",
36-
"file-loader": "^6.2.0",
37-
"jquery": "^4.0.0",
38-
"jquery-mousewheel": "^3.1.13",
39-
"mini-css-extract-plugin": "^2.9.1",
40-
"postcss-loader": "^8.1.1",
30+
"lightningcss": "^1.29.3",
4131
"pre-commit": "^2.0.0",
4232
"sass": "^1.86.3",
43-
"sass-loader": "^17.0.0",
44-
"style-loader": "^4.0.0",
45-
"toastr": "^2.1.4",
46-
"ts-loader": "^9.5.1",
47-
"typescript": "^7.0.0",
4833
"vite": "^8.0.0",
49-
"vite-plugin-static-copy": "^4.1.0"
50-
},
51-
"dependencies": {
52-
"@babel/core": "^7.26.9",
53-
"@popperjs/core": "^2.11.8",
54-
"bootstrap-slider": "^11.0.2",
55-
"lightningcss": "^1.29.3",
56-
"npm": "^12.0.0",
57-
"npm-check": "^6.0.1",
58-
"popper.js": "^1.16.1",
59-
"vite-jsconfig-paths": "^2.0.1",
6034
"vite-plugin-bundle-css": "^0.1.1",
61-
"vite-plugin-commonjs": "^0.10.4",
6235
"vite-plugin-css-injected-by-js": "^5.0.0",
63-
"vite-plugin-minify": "^3.0.0"
36+
"vite-plugin-minify": "^3.0.0",
37+
"vite-plugin-static-copy": "^4.1.0"
6438
}
6539
}

public/css/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/images/app/favicon/browserconfig.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.
-6.03 KB
Binary file not shown.

public/js/app.js

Lines changed: 1 addition & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/App/assets/images/favicon/browserconfig.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.
-6.03 KB
Binary file not shown.

src/App/assets/js/components/_main.js

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/App/assets/js/index.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
// Load jQuery and Bootstrap
21
// Import our custom CSS
32
import '../scss/index.scss'
4-
import './components/_main'
5-
import 'bootstrap/dist/js/bootstrap.bundle';
6-
window.$ = window.jQuery = require('jquery');
73

8-
// Import all of Bootstrap's JS
4+
// Import all of Bootstrap's JS (includes Popper)
5+
import 'bootstrap/dist/js/bootstrap.bundle';

0 commit comments

Comments
 (0)