@d-zero/scaffold 5.0.0-alpha.16 → 5.0.0-alpha.18

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/package.json +10 -7
package/CHANGELOG.md CHANGED
@@ -3,6 +3,26 @@
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.18](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.17...v5.0.0-alpha.18) (2024-10-11)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **scaffold:** fix `build` command ([1a12364](https://github.com/d-zero-dev/frontend-env/commit/1a12364aa593ae9074e8496730982ee47759ccea))
11
+
12
+ ### Features
13
+
14
+ - **scaffold:** add `test` command ([6df437e](https://github.com/d-zero-dev/frontend-env/commit/6df437eed5ac86947db3fea0e90557da7644fa8c))
15
+ - **scaffold:** add TS compile checker as `lint:ts` command ([a330265](https://github.com/d-zero-dev/frontend-env/commit/a330265447568acf8aef6eb1bc454b4de6061ffb))
16
+ - **scaffold:** remove `release` command ([7e1c8df](https://github.com/d-zero-dev/frontend-env/commit/7e1c8dfecf6c7705d432e48f0c3a5100adad4f6e))
17
+
18
+ ### BREAKING CHANGES
19
+
20
+ - **scaffold:** remove `release` command
21
+
22
+ # [5.0.0-alpha.17](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.16...v5.0.0-alpha.17) (2024-10-10)
23
+
24
+ **Note:** Version bump only for package @d-zero/scaffold
25
+
6
26
  # [5.0.0-alpha.16](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.15...v5.0.0-alpha.16) (2024-10-09)
7
27
 
8
28
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-zero/scaffold",
3
- "version": "5.0.0-alpha.16",
3
+ "version": "5.0.0-alpha.18",
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.",
@@ -12,16 +12,18 @@
12
12
  "type": "module",
13
13
  "main": "package.json",
14
14
  "scripts": {
15
+ "build": "npx @d-zero/builder",
15
16
  "dev": "eleventy --serve --watch",
16
17
  "d": "yarn dev",
17
- "release": "cross-env NODE_ENV=production build",
18
18
  "lint": "run-s lint:*",
19
19
  "lint:html": "markuplint \"./__assets/**/*.{pug,html}\"",
20
20
  "lint:pug": "pug-lint ./__assets/htdocs/**/*.pug -r console; pug-lint ./__assets/_libs/**/*.pug -r console;",
21
21
  "lint:css": "stylelint \"./__assets/**/*.scss\" --fix",
22
22
  "lint:js": "eslint \"./__assets/**/*.{js,mjs,cjs,jsx,ts,tsx}\" --fix",
23
+ "lint:ts": "tsc --noEmit",
23
24
  "lint:format": "prettier --write \"{*,./__assets/**/*}.{js,jsx,ts,tsx,scss,pug,html,json,yaml,*rc}\"",
24
25
  "lint:spell": "cspell --no-progress --show-suggestions \"**\"",
26
+ "test": "vitest run",
25
27
  "prepare": "husky",
26
28
  "up": "yarn upgrade-interactive --latest"
27
29
  },
@@ -34,16 +36,17 @@
34
36
  "last 2 ios_saf version"
35
37
  ],
36
38
  "devDependencies": {
37
- "@d-zero/builder": "5.0.0-alpha.16",
39
+ "@d-zero/builder": "5.0.0-alpha.18",
38
40
  "@d-zero/linters": "5.0.0-alpha.45",
39
- "@d-zero/postcss-config": "5.0.0-alpha.16",
41
+ "@d-zero/postcss-config": "5.0.0-alpha.18",
40
42
  "@d-zero/tsconfig": "0.3.2",
41
43
  "@types/node": "22.7.5",
42
44
  "cross-env": "7.0.3",
43
45
  "husky": "9.1.6",
44
46
  "npm-run-all2": "6.2.3",
45
- "sass": "1.79.4",
46
- "typescript": "5.6.3"
47
+ "sass": "1.79.5",
48
+ "typescript": "5.6.3",
49
+ "vitest": "2.1.2"
47
50
  },
48
51
  "dependencies": {
49
52
  "destyle.css": "4.0.1",
@@ -53,5 +56,5 @@
53
56
  "node": "22.9.0",
54
57
  "yarn": "1.22.22"
55
58
  },
56
- "gitHead": "c217da611ffc71b60cee585dd74701c8a1060c6f"
59
+ "gitHead": "0080a06f38ab69835e2e50badad9e939c34d42a1"
57
60
  }