Skip to content

Commit

Permalink
fix: images in README.md & package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Tishasoumya-02 authored Jan 20, 2025
1 parent c4e834c commit 32d8893
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A introduction block for volto
[![Unit tests](https://github.com/kitconcept/volto-introduction-block/actions/workflows/unit.yml/badge.svg)](https://github.com/kitconcept/volto-introduction-block/actions/workflows/unit.yml)


![kitconcept GmbH](https://raw.githubusercontent.com/kitconcept/volto-form-builder/master/kitconcept.png)
![kitconcept GmbH](https://raw.githubusercontent.com/kitconcept/volto-form-builder/main/kitconcept.png)


## Introduction
Expand Down
52 changes: 52 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
"plone",
"react"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "VOLTOCONFIG=$(pwd)/volto.config.js pnpm --filter @plone/volto start",
Expand All @@ -32,6 +35,55 @@
"storybook": "VOLTOCONFIG=$(pwd)/volto.config.js pnpm --filter @plone/volto storybook dev -p 6006 -c $(pwd)/.storybook",
"storybook-build": "VOLTOCONFIG=$(pwd)/volto.config.js pnpm --filter @plone/volto build-storybook -c $(pwd)/.storybook"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"useTabs": false,
"overrides": [
{
"files": "*.overrides",
"options": {
"parser": "less"
}
}
]
},
"stylelint": {
"extends": [
"stylelint-config-idiomatic-order"
],
"plugins": [
"stylelint-prettier"
],
"overrides": [
{
"files": [
"**/*.less"
],
"customSyntax": "postcss-less"
},
{
"files": [
"**/*.overrides"
],
"customSyntax": "postcss-less"
}
],
"rules": {
"prettier/prettier": true,
"rule-empty-line-before": [
"always-multi-line",
{
"except": [
"first-nested"
],
"ignore": [
"after-comment"
]
}
]
}
},
"dependencies": {
"@plone/volto": "workspace:*",
"@plone/registry": "workspace:*",
Expand Down

0 comments on commit 32d8893

Please sign in to comment.