create-application-template 1.0.5 → 1.1.0

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.
@@ -0,0 +1,3 @@
1
+ # supported browsers
2
+
3
+ defaults and fully supports es6-module
package/.eslintrc.js CHANGED
@@ -25,6 +25,7 @@ module.exports = {
25
25
  'plugin:import/typescript',
26
26
  'plugin:jsx-a11y/recommended',
27
27
  'plugin:eslint-comments/recommended',
28
+ 'plugin:eslint-plugin-compat/recommended',
28
29
  ],
29
30
  rules: {
30
31
  // 📜 @typescript-eslint
package/.stylelintrc.js CHANGED
@@ -2,6 +2,7 @@ module.exports = {
2
2
  extends: [
3
3
  'stylelint-config-standard',
4
4
  'stylelint-config-recess-order',
5
+ 'stylelint-no-unsupported-browser-features',
5
6
  ],
6
7
  // NOTE remove customSyntax and use "npm stylelint:css"
7
8
  // if you wish to use .css (see README.md "styles")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-application-template",
3
- "version": "1.0.5",
3
+ "version": "1.1.0",
4
4
  "description": "provides a configured application template for you to build upon",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -43,6 +43,7 @@
43
43
  "node": ">=18.19.1"
44
44
  },
45
45
  "dependencies": {
46
+ "browserslist": "4.24.2",
46
47
  "concurrently": "8.2.2",
47
48
  "dotenv-flow": "4.1.0",
48
49
  "husky": "9.0.11",
@@ -80,6 +81,7 @@
80
81
  "css-minimizer-webpack-plugin": "7.0.0",
81
82
  "dotenv-webpack": "8.1.0",
82
83
  "eslint": "8.56.0",
84
+ "eslint-plugin-compat": "6.0.1",
83
85
  "eslint-plugin-eslint-comments": "3.2.0",
84
86
  "eslint-plugin-import": "2.29.1",
85
87
  "eslint-plugin-jsx-a11y": "6.8.0",
@@ -99,6 +101,7 @@
99
101
  "stylelint": "16.5.0",
100
102
  "stylelint-config-recess-order": "5.0.1",
101
103
  "stylelint-config-standard": "36.0.0",
104
+ "stylelint-no-unsupported-browser-features": "8.0.1",
102
105
  "terser-webpack-plugin": "5.3.10",
103
106
  "typescript": "5.4.5",
104
107
  "webpack": "5.94.0",