-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
183 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
- master | ||
|
||
env: | ||
node-version: 18.x | ||
node-version: 20.x | ||
|
||
jobs: | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
node_modules | ||
build | ||
dev/core | ||
dev/addons | ||
core |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
module.exports = { | ||
roots: ['../../../packages'], | ||
testMatch: ['<rootDir>/../../../../**/?(*.)+(spec|test).[jt]s?(x)'], | ||
collectCoverageFrom: [ | ||
'src/addons/**/src/**/*.{js,jsx,ts,tsx}', | ||
'!src/**/*.d.ts', | ||
], | ||
transformIgnorePatterns: ['node_modules/(?!(volto-slate|@plone/volto)/)'], | ||
coverageThreshold: { | ||
global: { | ||
branches: 5, | ||
functions: 5, | ||
lines: 5, | ||
statements: 5, | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"core": { | ||
"output": "dev", | ||
"output": "./", | ||
"package": "@plone/volto", | ||
"url": "[email protected]:plone/volto.git", | ||
"https": "https://github.com/plone/volto.git" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "@kitconcept/volto-button-block", | ||
"name": "@kitconcept/volto-button-block-dev", | ||
"version": "2.3.1", | ||
"description": "volto-button-block: Volto add-on that provides a configurable button as a block.", | ||
"main": "src/index.js", | ||
|
@@ -16,23 +16,31 @@ | |
"access": "public" | ||
}, | ||
"scripts": { | ||
"init:quasar": "missdev --no-config --fetch-https", | ||
"start": "pnpm build:deps && VOLTOCONFIG=$(pwd)/volto.config.js pnpm --filter @plone/volto start", | ||
"start:prod": "pnpm --filter @plone/volto start:prod", | ||
"build": "pnpm build:deps && VOLTOCONFIG=$(pwd)/volto.config.js pnpm --filter @plone/volto build", | ||
"build:deps": "pnpm --filter @plone/registry --filter @plone/components build", | ||
"start": "pnpm build:deps && pnpm --filter @plone/volto start", | ||
"i18n": "rm -rf build/messages && NODE_ENV=production i18n --addon", | ||
"i18n": "pnpm --filter addons i18n", | ||
"test": "RAZZLE_JEST_CONFIG=$(pwd)/jest-addon.config.js pnpm --filter @plone/volto test", | ||
"lint": "eslint --max-warnings=0 'packages/**/src/**/*.{js,jsx,ts,tsx}'", | ||
"lint:fix": "eslint --fix 'packages/**/src/**/*.{js,jsx,ts,tsx}'", | ||
"prettier": "prettier --check 'packages/**/src/**/*.{js,jsx,ts,tsx}'", | ||
"prettier:fix": "prettier --write 'packages/**/src/**/*.{js,jsx,ts,tsx}' ", | ||
"stylelint": "stylelint 'packages/**/src/**/*.{css,scss,less}' --allow-empty-input", | ||
"stylelint:fix": "stylelint 'packages/**/src/**/*.{css,scss,less}' --fix", | ||
"dry-release": "release-it --dry-run", | ||
"release": "release-it", | ||
"release-major-alpha": "release-it major --preRelease=alpha", | ||
"release-alpha": "release-it --preRelease=alpha" | ||
"release": "pnpm --filter @kitconcept/volto-button-block release-it", | ||
"release-major-alpha": "pnpm --filter @kitconcept/volto-button-block release-it major --preRelease=alpha", | ||
"release-alpha": "pnpm --filter @kitconcept/volto-button-block release-it --preRelease=alpha" | ||
}, | ||
"peerDependencies": { | ||
"classnames": "2.2.6", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"react-intl": "3.8.0" | ||
"dependencies": { | ||
"@plone/volto": "workspace:*", | ||
"@plone/registry": "workspace:*", | ||
"@kitconcept/volto-button-block": "workspace:*" | ||
}, | ||
"devDependencies": { | ||
"@plone/scripts": "^3.6.1", | ||
"release-it": "^17.1.1" | ||
} | ||
"mrs-developer": "^2.2.0" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules | ||
build |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.