Skip to content

Commit 5a41143

Browse files
committed
chore: add example CSS effect - rounded text background
1 parent 97df4b7 commit 5a41143

17 files changed

Lines changed: 4573 additions & 15 deletions

File tree

examples/bootstrap/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@
88
"startCommand": "npm start"
99
},
1010
"scripts": {
11-
"start": "webpack serve",
12-
"build": "webpack build --mode=production",
13-
"test": "npm run build"
11+
"start": "webpack serve --mode development",
12+
"build": "webpack --mode production --progress"
1413
},
1514
"dependencies": {
1615
"@popperjs/core": "^2.11.8",

examples/bootstrap/webpack.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ const autoprefixer = require('autoprefixer');
33
const HtmlBundlerPlugin = require('html-bundler-webpack-plugin');
44

55
module.exports = {
6-
mode: 'development',
7-
86
output: {
97
path: path.resolve(__dirname, 'dist'),
108
clean: true,
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# CSS effect: rounded text background
2+
3+
Use the [HTML Builder Plugin](https://github.com/webdiscus/html-bundler-webpack-plugin) for Webpack
4+
to compile and bundle source Sass and JavaScript in HTML.
5+
6+
## View and edit in browser
7+
8+
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/edit/css-effect-rouded-background?file=src%2Fscss%2Fstyles.scss&terminal=build,start)
9+
10+
## How to use
11+
12+
```sh
13+
git clone https://github.com/webdiscus/html-bundler-webpack-plugin.git
14+
cd examples/css-effect-rounded-text-bg/
15+
npm install
16+
npm start
17+
```

0 commit comments

Comments
 (0)