Skip to content
Draft
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
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require("@patternslib/dev/.eslintrc.js");
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,4 @@ report.html
!.travis.yml
!src/redturtle
node_modules
package.json
yarn.lock
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*
!resources/
!resources/**
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python38
1 change: 1 addition & 0 deletions .release-it.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require("@patternslib/dev/.release-it.js");
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Changelog
0.1.3 (2025-10-27)
------------------

- Plone 6 compatibility.
[cekk]
- Unistall registry entries properly.
[cekk]

Expand Down
90 changes: 0 additions & 90 deletions Gruntfile.js

This file was deleted.

10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,19 @@ JS Development and bundling
---------------------------

If you need to develop this product's javascripts or styles, you need to compile the code
for the resource registry bundle. To do this, there are two grunt tasks.
for the resource registry bundle.

First of all, you need to install grunt dependencies listed in package.json file in the root of this package:
First of all, you need to install dependencies listed in package.json file in the root of this package:

.. code::

npm install


After that, you can use two different grunt tasks:
After that, you can use two different scripts::

- `grunt`: the default task, that listen files changes with `watch` and re-build resources and bundles automatically
- `grunt compile`: to manually compile all resources and bundles
- `npm run watch`: the default task, that listen files changes with `watch` and re-build resources and bundles automatically
- `npm run compile`: to manually compile all resources and bundles


Contribute
Expand Down
1 change: 1 addition & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
const baseConfig = require("@patternslib/dev/babel.config.js");
4 changes: 4 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
const jest_config = require("@patternslib/dev/jest.config.js");
jest_config.rootDir = "./resources";

module.exports = jest_config;
Loading