create-application-template 0.9.0 → 0.9.2

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/.babelrc CHANGED
@@ -17,5 +17,11 @@
17
17
  },
18
18
  "react-refresh/babel"
19
19
  ]
20
- ]
20
+ ],
21
+ "env": {
22
+ "test": {
23
+ // to mock webpack's require.context in jest
24
+ "plugins": ["transform-require-context"]
25
+ }
26
+ }
21
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-application-template",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "provides a configured application template for you to build upon",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -72,6 +72,7 @@
72
72
  "@typescript-eslint/parser": "6.5.0",
73
73
  "babel-jest": "29.7.0",
74
74
  "babel-loader": "9.1.3",
75
+ "babel-plugin-transform-require-context": "0.1.1",
75
76
  "case-sensitive-paths-webpack-plugin": "2.4.0",
76
77
  "confusing-browser-globals": "1.0.11",
77
78
  "copy-webpack-plugin": "12.0.2",
@@ -128,7 +128,7 @@ module.exports = (webpackEnv) => {
128
128
  new HtmlWebpackPlugin({
129
129
  template: paths.src.indexHtml,
130
130
  favicon: paths.src.assets.faviconIco,
131
- title: 'CAT',
131
+ title: 'Create Application Template',
132
132
  ...(isProduction && {
133
133
  minify: {
134
134
  removeComments: true,