create-application-template 1.0.5 → 1.1.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.
@@ -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.1",
4
4
  "description": "provides a configured application template for you to build upon",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -12,6 +12,7 @@
12
12
  "build:profile": "webpack --config webpack/webpack.config.js --env BUNDLER_ENV=prod BUNDLER_WITH_PROFILING=true",
13
13
  "test": "jest",
14
14
  "test:watch": "jest --watch",
15
+ "test:updateSnapshot": "jest --updateSnapshot",
15
16
  "dev": "concurrently \"npm run test:watch\" \"npm run start\"",
16
17
  "lint": "eslint \"src/**/*.{js,jsx,ts,tsx,json}\"",
17
18
  "lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx,json}\"",
@@ -43,6 +44,7 @@
43
44
  "node": ">=18.19.1"
44
45
  },
45
46
  "dependencies": {
47
+ "browserslist": "4.24.2",
46
48
  "concurrently": "8.2.2",
47
49
  "dotenv-flow": "4.1.0",
48
50
  "husky": "9.0.11",
@@ -80,6 +82,7 @@
80
82
  "css-minimizer-webpack-plugin": "7.0.0",
81
83
  "dotenv-webpack": "8.1.0",
82
84
  "eslint": "8.56.0",
85
+ "eslint-plugin-compat": "6.0.1",
83
86
  "eslint-plugin-eslint-comments": "3.2.0",
84
87
  "eslint-plugin-import": "2.29.1",
85
88
  "eslint-plugin-jsx-a11y": "6.8.0",
@@ -99,6 +102,7 @@
99
102
  "stylelint": "16.5.0",
100
103
  "stylelint-config-recess-order": "5.0.1",
101
104
  "stylelint-config-standard": "36.0.0",
105
+ "stylelint-no-unsupported-browser-features": "8.0.1",
102
106
  "terser-webpack-plugin": "5.3.10",
103
107
  "typescript": "5.4.5",
104
108
  "webpack": "5.94.0",