diff --git a/package.json b/package.json index 43b11df6..df353efa 100644 --- a/package.json +++ b/package.json @@ -11,16 +11,8 @@ "check": "yarn exec biome -- check", "types": "yarn exec tsc -- --noEmit" }, - "keywords": [ - "compound", - "design tokens", - "style dictionary", - "css" - ], - "files": [ - "./assets/web/**/*", - "./icons/**/*" - ], + "keywords": ["compound", "design tokens", "style dictionary", "css"], + "files": ["./assets/web/**/*", "./icons/**/*"], "main": "assets/web/js/index.js", "type": "module", "exports": { diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..8ed110dc --- /dev/null +++ b/renovate.json @@ -0,0 +1,13 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:base"], + "semanticCommits": "disabled", + "packageRules": [ + { + "groupName": "all non-major dependencies", + "groupSlug": "all-minor-patch", + "matchUpdateTypes": ["minor", "patch"], + "extends": ["schedule:weekly"] + } + ] +}