@d-zero/scaffold 5.0.0-alpha.13 → 5.0.0-alpha.15

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 @@
1
+ CHANGELOG.md
package/CHANGELOG.md CHANGED
@@ -3,13 +3,19 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- # [5.0.0-alpha.13](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.12...v5.0.0-alpha.13) (2024-07-22)
6
+ # [5.0.0-alpha.15](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.14...v5.0.0-alpha.15) (2024-10-01)
7
7
 
8
8
  **Note:** Version bump only for package @d-zero/scaffold
9
9
 
10
+ # [5.0.0-alpha.14](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.13...v5.0.0-alpha.14) (2024-07-31)
10
11
 
12
+ ### Features
11
13
 
14
+ - **builder:** css,js,画像ファイルのアウトプット先ディレクトリを指定できるようにする ([bd6028b](https://github.com/d-zero-dev/frontend-env/commit/bd6028b501c872e5667878b754f48938db39e130))
12
15
 
16
+ # [5.0.0-alpha.13](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.12...v5.0.0-alpha.13) (2024-07-22)
17
+
18
+ **Note:** Version bump only for package @d-zero/scaffold
13
19
 
14
20
  # [5.0.0-alpha.12](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.11...v5.0.0-alpha.12) (2024-07-05)
15
21
 
@@ -4,6 +4,9 @@ const eleventy = require('@d-zero/builder/11ty');
4
4
 
5
5
  module.exports = function (eleventyConfig) {
6
6
  // eleventyConfig.addGlobalData('publicDir', '@static');
7
+ // eleventyConfig.addGlobalData('outputCssDir', 'css');
8
+ // eleventyConfig.addGlobalData('outputJsDir', 'js');
9
+ // eleventyConfig.addGlobalData('outputImgDir', 'img');
7
10
 
8
11
  eleventyConfig.addGlobalData('alias', {
9
12
  '@': path.resolve(__dirname, '__assets', '_libs'),
@@ -3,5 +3,10 @@ import path from 'node:path';
3
3
  // eslint-disable-next-line import/no-extraneous-dependencies
4
4
  import lintStagedConfigGenerator from '@d-zero/lint-staged-config';
5
5
  export default lintStagedConfigGenerator({
6
- ignore: [path.resolve(process.cwd(), 'htdocs', '**', '*')],
6
+ ignore: [
7
+ path.resolve(process.cwd(), 'htdocs', '**', '*'),
8
+ {
9
+ textlint: 'CHANGELOG.md',
10
+ },
11
+ ],
7
12
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-zero/scaffold",
3
- "version": "5.0.0-alpha.13",
3
+ "version": "5.0.0-alpha.15",
4
4
  "description": "Frontend scaffold files of D-ZERO Co., Ltd.",
5
5
  "repository": "https://github.com/d-zero-dev/frontend-env.git",
6
6
  "author": "D-ZERO Co., Ltd.",
@@ -34,24 +34,24 @@
34
34
  "last 2 ios_saf version"
35
35
  ],
36
36
  "devDependencies": {
37
- "@d-zero/builder": "5.0.0-alpha.13",
38
- "@d-zero/linters": "5.0.0-alpha.40",
39
- "@d-zero/postcss-config": "5.0.0-alpha.13",
40
- "@d-zero/tsconfig": "0.3.1",
41
- "@types/node": "20.14.11",
37
+ "@d-zero/builder": "5.0.0-alpha.15",
38
+ "@d-zero/linters": "5.0.0-alpha.43",
39
+ "@d-zero/postcss-config": "5.0.0-alpha.15",
40
+ "@d-zero/tsconfig": "0.3.2",
41
+ "@types/node": "22.7.4",
42
42
  "cross-env": "7.0.3",
43
- "husky": "9.1.0",
44
- "npm-run-all2": "6.2.2",
45
- "sass": "1.77.8",
46
- "typescript": "5.5.3"
43
+ "husky": "9.1.6",
44
+ "npm-run-all2": "6.2.3",
45
+ "sass": "1.79.4",
46
+ "typescript": "5.6.2"
47
47
  },
48
48
  "dependencies": {
49
49
  "destyle.css": "4.0.1",
50
- "tslib": "2.6.3"
50
+ "tslib": "2.7.0"
51
51
  },
52
52
  "volta": {
53
- "node": "22.5.0",
53
+ "node": "22.9.0",
54
54
  "yarn": "1.22.22"
55
55
  },
56
- "gitHead": "f841fa744c905ee849e1d04d5470b039c5ffc439"
56
+ "gitHead": "3f81a7c6975a37dfb3b0501da71a146ffff49077"
57
57
  }