Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .npmpackagejsonlintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"require-version": "error",
"scripts-type": "error",
"valid-values-author": "off",
"valid-values-license": ["error", ["EUPL-1.2"]],
"valid-values-name-scope": ["error", ["@example"]],
"valid-values-license": ["error", ["CC0-1.0", "EUPL-1.2"]],
"valid-values-name-scope": ["error", ["@nl-design-system-community"]],
"valid-values-private": "off",
"version-format": "error",
"version-type": "error"
Expand Down
12 changes: 6 additions & 6 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"scss/at-rule-no-unknown": true,
"scss/dollar-variable-default": true,
"scss/dollar-variable-first-in-block": [true, { "ignore": ["comments", "imports"] }],
"scss/dollar-variable-pattern": "^(example|utrecht)-[a-z0-9-]+$",
"scss/percent-placeholder-pattern": "^(example|utrecht)-[a-z0-9-]+$",
"scss/dollar-variable-pattern": null,
"scss/percent-placeholder-pattern": null,
"scss/operator-no-newline-after": null,
"scss/at-extend-no-missing-placeholder": null,
"custom-property-pattern": "^_?(example|denhaag|utrecht)-[a-z0-9-]+$",
"selector-class-pattern": "^(example|denhaag|utrecht)-[a-z0-9_-]+$",
"keyframes-name-pattern": "^(example|utrecht)-[a-z0-9-]+$",
"custom-property-pattern": null,
"selector-class-pattern": null,
"keyframes-name-pattern": null,
"at-rule-no-unknown": null,
"block-no-empty": [true],
"color-no-invalid-hex": [true],
Expand All @@ -27,7 +27,7 @@
"function-linear-gradient-no-nonstandard-direction": [true],
"keyframe-declaration-no-important": [true],
"media-feature-name-no-unknown": [true],
"no-descending-specificity": [true],
"no-descending-specificity": null,
"no-duplicate-at-import-rules": [true],
"no-duplicate-selectors": [true],
"no-empty-source": [true],
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<!-- @license CC0-1.0 -->

# NL Design System thema en documentatie voor Gravity Forms
# NL Design System thema en documentatie voor Gravity Forms
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "Community for NL Design System",
"description": "Design system based on the NL Design System architecture",
"license": "EUPL-1.2",
"name": "@example/design-system",
"name": "@nl-design-system-community/nlds-gravity-forms",
"keywords": [
"nl-design-system"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@nl-design-system-unstable/documentation",
"name": "@nl-design-system-community/documentation",
"version": "0.0.2-alpha.94",
"author": "Community for NL Design System",
"description": "Documentation for combining NL Design System with Gavity Forms",
Expand Down
11 changes: 10 additions & 1 deletion packages/theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,14 @@
"nl-design-system",
"gravity-forms"
],
"private": false
"private": false,
"devDependencies": {
"@utrecht/components": "3.0.1-alpha.24",
"rimraf": "3.0.2",
"sass": "1.69.5"
},
"scripts": {
"build": "sass src/:dist/ --load-path=node_modules/ --no-source-map",
"clean": "rimraf dist/"
}
}
Loading