Skip to content

Commit

Permalink
build: added style files concatenation and minification to plugin base (
Browse files Browse the repository at this point in the history
  • Loading branch information
berezinant committed May 10, 2024
1 parent 2d45e27 commit 92742ab
Show file tree
Hide file tree
Showing 8 changed files with 10,568 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,6 @@ android.local.properties

core/out/
runners/**/out/

**/node_modules
**/build
8,947 changes: 8,947 additions & 0 deletions dokka-subprojects/plugin-base/src/main/resources/dokka/package-lock.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"scripts": {
"build": "webpack --config webpack.config.js"
},
"devDependencies": {
"css-loader": "^6.9.1",
"css-minimizer-webpack-plugin": "^6.0.0",
"cssnano": "^6.0.3",
"mini-css-extract-plugin": "^2.7.7",
"node-sass": "^9.0.0",
"postcss-loader": "^8.0.0",
"sass": "^1.70.0",
"sass-loader": "^14.0.0",
"style-loader": "^3.3.4",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/*!
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/

.component1 {
color: red;
}

.more {
color: green;
}

.complex {
color: yellow;
background-color: black;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/*!
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/

.component2 {
color: blue;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@import "component1";
@import "component2";
@import "style";
Loading

0 comments on commit 92742ab

Please sign in to comment.