cmyr-template-cli 1.27.2 → 1.27.4
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/dist/plopfile.js
CHANGED
|
@@ -729,6 +729,10 @@ async function initDependabot(projectPath, answers) {
|
|
|
729
729
|
{
|
|
730
730
|
'dependency-name': 'semantic-release',
|
|
731
731
|
},
|
|
732
|
+
{
|
|
733
|
+
'dependency-name': '@commitlint/cli',
|
|
734
|
+
versions: ['>= 19.0.0'],
|
|
735
|
+
},
|
|
732
736
|
{
|
|
733
737
|
'dependency-name': '@commitlint/config-conventional',
|
|
734
738
|
versions: ['>= 19.0.0'],
|
|
@@ -1104,7 +1108,6 @@ async function initHusky(projectPath) {
|
|
|
1104
1108
|
}
|
|
1105
1109
|
const keyname = `*.{${extnames.join(',')}}`;
|
|
1106
1110
|
const devDependencies = {
|
|
1107
|
-
'@commitlint/config-conventional': '18.6.3',
|
|
1108
1111
|
husky: '^9.0.11',
|
|
1109
1112
|
'lint-staged': '^15.2.2',
|
|
1110
1113
|
};
|
|
@@ -1267,6 +1270,7 @@ async function initCommitizen(projectPath) {
|
|
|
1267
1270
|
devDependencies: {
|
|
1268
1271
|
...devDependencies,
|
|
1269
1272
|
...pkg === null || pkg === void 0 ? void 0 : pkg.devDependencies,
|
|
1273
|
+
'@commitlint/cli': '^18.6.1',
|
|
1270
1274
|
'@commitlint/config-conventional': '^18.6.3',
|
|
1271
1275
|
},
|
|
1272
1276
|
config: {
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@ jobs:
|
|
|
16
16
|
with:
|
|
17
17
|
version: "latest"
|
|
18
18
|
- name: Setup Node.js environment
|
|
19
|
-
uses: actions/setup-node@
|
|
19
|
+
uses: actions/setup-node@v4
|
|
20
20
|
with:
|
|
21
21
|
node-version: "lts/*"
|
|
22
22
|
cache: "pnpm"
|
|
@@ -32,7 +32,7 @@ jobs:
|
|
|
32
32
|
**/node_modules
|
|
33
33
|
key: pnpm-${{ runner.os }}-${{ hashFiles('package.json') }}
|
|
34
34
|
restore-keys: pnpm-${{ runner.os }}
|
|
35
|
-
- run: pnpm i --
|
|
35
|
+
- run: pnpm i --frozen-lockfile
|
|
36
36
|
- run: pnpm run lint
|
|
37
37
|
- run: pnpm run build
|
|
38
38
|
- env:
|