@grunnverk/core 1.5.13 → 1.5.14-dev.20260316150808.e770e9e
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/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/dist/src/constants.d.ts +1 -0
- package/dist/src/constants.d.ts.map +1 -1
- package/dist/src/types.d.ts +5 -0
- package/dist/src/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -255,6 +255,7 @@ const KODRDRIV_DEFAULTS = {
|
|
|
255
255
|
mergeMethod: DEFAULT_MERGE_METHOD,
|
|
256
256
|
from: DEFAULT_FROM_COMMIT_ALIAS,
|
|
257
257
|
targetVersion: 'patch',
|
|
258
|
+
lockfilePolicy: 'ignore',
|
|
258
259
|
interactive: DEFAULT_INTERACTIVE_MODE,
|
|
259
260
|
requiredEnvVars: [
|
|
260
261
|
'GITHUB_TOKEN',
|
|
@@ -2774,6 +2775,10 @@ const ConfigSchema = z.object({
|
|
|
2774
2775
|
]).optional(),
|
|
2775
2776
|
from: z.string().optional(),
|
|
2776
2777
|
targetVersion: z.string().optional(),
|
|
2778
|
+
lockfilePolicy: z.enum([
|
|
2779
|
+
'ignore',
|
|
2780
|
+
'commit'
|
|
2781
|
+
]).optional(),
|
|
2777
2782
|
interactive: z.boolean().optional(),
|
|
2778
2783
|
skipAlreadyPublished: z.boolean().optional(),
|
|
2779
2784
|
forceRepublish: z.boolean().optional(),
|