create-application-template 0.9.1 → 0.10.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-application-template",
3
- "version": "0.9.1",
3
+ "version": "0.10.0",
4
4
  "description": "provides a configured application template for you to build upon",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -15,8 +15,8 @@
15
15
  "dev": "concurrently \"npm run test:watch\" \"npm run start\"",
16
16
  "lint": "eslint \"src/**/*.{js,jsx,ts,tsx,json}\"",
17
17
  "lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx,json}\"",
18
- "stylelint": "npx stylelint \"src/**/*.{js,ts}\"",
19
- "stylelint:fix": "npx stylelint --fix \"src/**/*.{js,ts}\"",
18
+ "stylelint": "npx stylelint \"src/styles/**/*.{js,ts}\"",
19
+ "stylelint:fix": "npx stylelint --fix \"src/styles/**/*.{js,ts}\"",
20
20
  "stylelint:css": "npx stylelint \"src/**/*.css\"",
21
21
  "stylelint:css:fix": "npx stylelint --fix \"src/**/*.css\"",
22
22
  "prepare": "husky"
@@ -11,11 +11,11 @@ export const StyledContainer = styled.div(({ theme }) => `
11
11
  background-color: ${theme.colors.palette.background};
12
12
  `)
13
13
 
14
- export const StyledHeader = styled.header `
14
+ export const StyledHeader = styled.header`
15
15
  text-align: center;
16
16
  `
17
17
 
18
- export const StyledSection = styled.section `
18
+ export const StyledSection = styled.section`
19
19
  display: flex;
20
20
  flex-direction: column;
21
21
  margin: 2vh;
@@ -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,