@razerspine/webpack-core 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +19 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,15 @@
1
1
  # @razerspine/webpack-core
2
2
 
3
- Core webpack configurations and loaders for starter templates
3
+
4
+ Core webpack configuration and loaders for modern Pug-based projects.
5
+
6
+ ## Designed for
7
+
8
+ This package is developed as part of the
9
+ [Webpack Starter Monorepo](https://github.com/Razerspine/webpack-starter-monorepo).
10
+
11
+ It provides shared webpack configuration and loaders used by the
12
+ starter templates, but can also be used independently in custom setups.
4
13
 
5
14
  ## Features
6
15
 
@@ -10,6 +19,11 @@ Core webpack configurations and loaders for starter templates
10
19
  - Environment-aware loaders
11
20
  - No aliases or UI-kit hardcoded
12
21
 
22
+ ## Installation
23
+ ```bash
24
+ npm i @razerspine/webpack-core
25
+ ```
26
+
13
27
  ## Usage
14
28
 
15
29
  ```js
@@ -40,3 +54,7 @@ module.exports = (env, argv) => {
40
54
  : createProdConfig())
41
55
  };
42
56
  };
57
+ ```
58
+
59
+ ## 📄 License
60
+ This project is licensed under the ISC License.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@razerspine/webpack-core",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Core webpack config and loaders for starter templates",
5
5
  "license": "ISC",
6
6
  "author": "Razerspine",