@d-zero/scaffold 5.0.0-alpha.8 → 5.0.0-alpha.9

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/CHANGELOG.md CHANGED
@@ -3,6 +3,13 @@
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.9](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.8...v5.0.0-alpha.9) (2024-06-10)
7
+
8
+ ### Features
9
+
10
+ - **builder:** `publicDir`を`eleventyConfig.addGlobalData`に設定できるように追加 ([26e2740](https://github.com/d-zero-dev/frontend-env/commit/26e2740c8df32cc60cb4e407fe4cfc20919a7e5a))
11
+ - **scaffold:** `[@static](https://github.com/static)`フォルダを空フォルダとして予め準備 ([7fe485b](https://github.com/d-zero-dev/frontend-env/commit/7fe485b2ef4d5a13e23e494c1d2c5422ef3fdc3b))
12
+
6
13
  # [5.0.0-alpha.8](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.7...v5.0.0-alpha.8) (2024-05-23)
7
14
 
8
15
  **Note:** Version bump only for package @d-zero/scaffold
File without changes
File without changes
@@ -3,6 +3,8 @@ const path = require('node:path');
3
3
  const eleventy = require('@d-zero/builder/11ty');
4
4
 
5
5
  module.exports = function (eleventyConfig) {
6
+ // eleventyConfig.addGlobalData('publicDir', '@static');
7
+
6
8
  eleventyConfig.addGlobalData('alias', {
7
9
  '@': path.resolve(__dirname, '__assets', '_libs'),
8
10
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-zero/scaffold",
3
- "version": "5.0.0-alpha.8",
3
+ "version": "5.0.0-alpha.9",
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.",
@@ -33,23 +33,23 @@
33
33
  "last 2 ios_saf version"
34
34
  ],
35
35
  "devDependencies": {
36
- "@d-zero/builder": "5.0.0-alpha.8",
37
- "@d-zero/linters": "5.0.0-alpha.31",
38
- "@d-zero/postcss-config": "5.0.0-alpha.8",
39
- "@d-zero/tsconfig": "0.2.0",
40
- "@types/node": "20.12.12",
36
+ "@d-zero/builder": "5.0.0-alpha.9",
37
+ "@d-zero/linters": "5.0.0-alpha.34",
38
+ "@d-zero/postcss-config": "5.0.0-alpha.9",
39
+ "@d-zero/tsconfig": "0.3.0",
40
+ "@types/node": "20.14.2",
41
41
  "cross-env": "7.0.3",
42
42
  "npm-run-all2": "6.2.0",
43
- "sass": "1.77.2",
43
+ "sass": "1.77.4",
44
44
  "typescript": "5.4.5"
45
45
  },
46
46
  "dependencies": {
47
47
  "ress": "5.0.2",
48
- "tslib": "2.6.2"
48
+ "tslib": "2.6.3"
49
49
  },
50
50
  "volta": {
51
51
  "node": "22.2.0",
52
52
  "yarn": "1.22.22"
53
53
  },
54
- "gitHead": "54795ac0cc526ff91b6fba685240b1578a43bd4d"
54
+ "gitHead": "27d13f24a36ea96e89789b914d4c5fcc92828879"
55
55
  }