create-application-template 1.4.0 → 1.5.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.
package/.husky/pre-commit CHANGED
@@ -1,5 +1,5 @@
1
- npm run lint:fix
2
- npm run stylelint:fix
1
+ npm run lint
2
+ npm run stylelint
3
3
  # use below if you wish to use .css (see README.md "styles")
4
- # npm run stylelint:css:fix
4
+ # npm run stylelint:css
5
5
  npm run test
package/.stylelintrc.js CHANGED
@@ -16,6 +16,7 @@ module.exports = {
16
16
  'keyframes-name-pattern': null,
17
17
  'comment-empty-line-before': 'never',
18
18
  'declaration-empty-line-before': 'never',
19
+ 'media-feature-range-notation': 'prefix',
19
20
  'value-keyword-case': [
20
21
  'lower',
21
22
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-application-template",
3
- "version": "1.4.0",
3
+ "version": "1.5.1",
4
4
  "description": "provides a configured application template for you to build upon",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -91,7 +91,7 @@ module.exports = (webpackEnv) => {
91
91
  type: 'asset/resource',
92
92
  },
93
93
  {
94
- test: /\.(woff(2)?|eot|ttf|otf|svg|)$/,
94
+ test: /\.(woff(2)?|eot|ttf|otf|svg)$/,
95
95
  type: 'asset',
96
96
  parser: {
97
97
  dataUrlCondition: {