Compare commits

...

6 Commits

Author SHA1 Message Date
Ray Elliott 0377a25611 update readme 2021-03-27 18:40:36 +00:00
Ray Elliott 7605340f9f fix production compilatiob 2021-03-27 18:34:29 +00:00
Ray Elliott 3fb1f75cec fix readme 2021-03-27 18:31:46 +00:00
Ray Elliott 167898f31b update readme 2021-03-27 18:31:23 +00:00
Ray Elliott 0b39daa89d update readme 2021-03-27 18:25:32 +00:00
Ray Elliott dac9be1b01 enable hmr 2021-03-27 18:24:15 +00:00
6 changed files with 1016 additions and 26 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
assets/
mix-manifest.json
/hot

View File

@ -1,27 +1,22 @@
October CMS Webpack Theme Boilerplate
==========
# October CMS Webpack Theme Boilerplate
This is a starter theme for October CMS that includes:
- Webpack (using Laravel Mix)
- Webpack (using [Laravel Mix](https://laravel.com/docs/8.x/mix))
- PostCSS
- Hot module reloading
To use it:
- [Install October CMS](https://octobercms.com/docs/setup/installation)
- Clone the repo in your theme directory
- Inside cloned directory run `npm install` (node_modules folder will be created)
- Install more packages using `npm install --save`
- Require your installed packages in src/js/app.js
- Modify the js and css files
- Run `npm run dev` (`npm run watch` to recompile when something changes)
- [Add new pages, partials, content files...](https://octobercms.com/docs/cms/themes)
- [Install October CMS](https://octobercms.com/docs/setup/installation).
- Clone the repo in October's `themes` directory.
- Inside cloned directory run `npm install`.
- Install more packages using `npm install --save`.
- Require your installed packages in `src/js/app.js`.
- Run `npm run dev` (`npm run watch` to recompile when something changes, `npm run hot` to enable HMR).
- Run `npm run prod` to compile for production.
When you are ready for production:
- Run `npm run prod`
## To add ajax framework
## To enable the Ajax framework
```sh
npm install jquery

996
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -5,11 +5,13 @@
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --config=node_modules/laravel-mix/setup/webpack.config.js"
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"browser-sync": "^2.26.14",
"browser-sync-webpack-plugin": "^2.2.2",
"cross-env": "^7.0.3",
"laravel-mix": "^6.0.13",
"postcss": "^8.2.8",

View File

@ -1,7 +1,7 @@
/* css to go here */
:root {
@mixin defineHex --test-hsl, #00ff00;
@mixin defineHex --test-hsl, #0000ff;
}
body {

View File

@ -2,13 +2,9 @@ let mix = require('laravel-mix');
mix.options({
processCssUrls: false,
autoprefixer: {
enabled: true,
options: {
overrideBrowserslist: ['last 2 versions', '> 1%'],
cascade: true,
grid: true,
}
hmrOptions: {
host: 'october.home',
port: '8080'
},
})
.setPublicPath('/')