Socket
Socket
Sign inDemoInstall

@eeacms/volto-columns-block

Package Overview
Dependencies
13
Maintainers
9
Versions
56
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.3.3 to 6.3.4

.husky/pre-commit

16

CHANGELOG.md

@@ -7,2 +7,18 @@ ### Changelog

### [6.3.4](https://github.com/eea/volto-columns-block/compare/6.3.3...6.3.4) - 29 September 2023
#### :house: Internal changes
- style: lint-staged reorder in package.json [Alin Voinea - [`4c58155`](https://github.com/eea/volto-columns-block/commit/4c58155e5ab792d1aa063c27de9756226269ee77)]
- chore: Remove i18n.js script [Alin Voinea - [`395ac31`](https://github.com/eea/volto-columns-block/commit/395ac31bc7b8bc7c1549617f24b6b5c0636c4464)]
#### :house: Documentation changes
- docs: Update README and DEVELOP [Alin Voinea - [`f080af8`](https://github.com/eea/volto-columns-block/commit/f080af88dd0965fdf47401229a5df237ad1723a8)]
- docs: Update README and DEVELOP [Alin Voinea - [`efb0708`](https://github.com/eea/volto-columns-block/commit/efb0708c878cb0569172af49a94c224f85f408f8)]
#### :hammer_and_wrench: Others
- test: EN locales, pre-commit fix, feature PRs checks Refs #257193 [valentinab25 - [`c2c524c`](https://github.com/eea/volto-columns-block/commit/c2c524c764a7565d7aaf61a91279908718fa1772)]
- test: Add cypress test for columns in DX Layout - refs #254894 [Crețu Mihaela - [`44effad`](https://github.com/eea/volto-columns-block/commit/44effada16c61a51338a8f8e3140e35084ef9d5b)]
### [6.3.3](https://github.com/eea/volto-columns-block/compare/6.3.2...6.3.3) - 29 August 2023

@@ -9,0 +25,0 @@

4

cypress.config.js

@@ -5,3 +5,3 @@ const { defineConfig } = require('cypress');

viewportWidth: 1280,
defaultCommandTimeout: 8888,
defaultCommandTimeout: 5000,
chromeWebSecurity: false,

@@ -11,3 +11,3 @@ reporter: 'junit',

retries: {
runMode: 8,
runMode: 1,
openMode: 0,

@@ -14,0 +14,0 @@ },

@@ -19,8 +19,10 @@ # volto-columns-block

1. Happy hacking!
1. Initialize git hooks
```Bash
cd src/addons/volto-columns-block/
yarn prepare
```
1. Happy hacking!
### Or add @eeacms/volto-columns-block to your Volto project

@@ -36,3 +38,3 @@

yo @plone/volto my-volto-project --addon @eeacms/volto-columns-block --workspace src/addons/volto-columns-block --skip-install
yo @plone/volto my-volto-project --addon @eeacms/volto-columns-block --skip-install
cd my-volto-project

@@ -53,3 +55,3 @@

yarn develop
make develop
yarn

@@ -59,9 +61,6 @@

docker pull plone
docker run -d --name plone -p 8080:8080 -e SITE=Plone -e PROFILES="profile-plone.restapi:blocks" plone
docker run --pull always -it --rm --name plone -p 8080:8080 -e SITE=Plone plone/plone-backend
...wait for backend to setup and start - `Ready to handle requests`:
docker logs -f plone
...you can also check http://localhost:8080/Plone

@@ -78,12 +77,3 @@

cd src/addons/volto-columns-block/
frontend
$ yarn start
1. Go to http://localhost:3000
1. Happy hacking!
$ cd src/addons/volto-columns-block/
## Cypress

@@ -90,0 +80,0 @@

{
"name": "@eeacms/volto-columns-block",
"version": "6.3.3",
"version": "6.3.4",
"description": "volto-columns-block: Volto add-on",

@@ -25,2 +25,4 @@ "main": "src/index.js",

"babel-plugin-transform-class-properties": "^6.24.1",
"husky": "*",
"lint-staged": "*",
"md5": "^2.3.0"

@@ -32,2 +34,23 @@ },

},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"make lint-fix",
"make prettier-fix"
],
"src/**/*.{jsx}": [
"make i18n"
],
"theme/**/*.{css,less}": [
"make stylelint-fix"
],
"src/**/*.{css,less}": [
"make stylelint-fix"
],
"theme/**/*.overrides": [
"make stylelint-fix"
],
"src/**/*.overrides": [
"make stylelint-fix"
]
},
"scripts": {

@@ -50,3 +73,4 @@ "release": "release-it",

"cypress:run": "make cypress-run",
"cypress:open": "make cypress-open"
"cypress:open": "make cypress-open",
"prepare": "husky install"
},

@@ -53,0 +77,0 @@ "jest": {

@@ -34,23 +34,9 @@ # volto-columns-block

1. Get the latest Docker images
git clone https://github.com/eea/volto-columns-block.git
cd volto-columns-block
make
make start
```
docker pull plone
docker pull plone/volto
```
Go to http://localhost:3000
1. Start Plone backend
```
docker run -d --name plone -p 8080:8080 -e SITE=Plone -e PROFILES="profile-plone.restapi:blocks" plone
```
1. Start Volto frontend
```
docker run -it --rm -p 3000:3000 --link plone -e ADDONS="@eeacms/volto-columns-block" plone/volto
```
1. Go to http://localhost:3000
### Add volto-columns-block to your Volto project

@@ -66,21 +52,21 @@

- If you already have a volto project, just update `package.json`:
* If you already have a volto project, just update `package.json`:
```JSON
"addons": [
"@eeacms/volto-columns-block"
],
```JSON
"addons": [
"@eeacms/volto-columns-block"
],
"dependencies": {
"@eeacms/volto-columns-block": "^4.0.0"
}
```
"dependencies": {
"@eeacms/volto-columns-block": "*"
}
```
- If not, create one:
* If not, create one:
```
npm install -g yo @plone/generator-volto
yo @plone/volto my-volto-project --addon @eeacms/volto-columns-block
cd my-volto-project
```
```
npm install -g yo @plone/generator-volto
yo @plone/volto my-volto-project --canary --addon @eeacms/volto-columns-block
cd my-volto-project
```

@@ -116,8 +102,1 @@ 1. Install new add-ons and restart Volto:

[European Environment Agency (EU)](http://eea.europa.eu)
rved.
See [LICENSE.md](https://github.com/eea/volto-columns-block/blob/master/LICENSE.md) for details.
## Funding
[European Environment Agency (EU)](http://eea.europa.eu)
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc