wuffle 0.56.1 → 0.57.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/columns.js +6 -0
- package/lib/store.js +17 -5
- package/package.json +7 -7
- package/public/bundle.js.map +1 -1
- package/wuffle.config.example.js +5 -3
- package/public/favicon.ico +0 -0
package/wuffle.config.example.js
CHANGED
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
* * closed - if the column issues must be closed
|
|
16
16
|
* * sorting - true if column cards should be sorted
|
|
17
17
|
* incrementally based on links
|
|
18
|
+
* * fifo - true to turn the default column ordering from
|
|
19
|
+
* last in first out to first in first out
|
|
18
20
|
* * states - a list of board states to map to this column
|
|
19
21
|
*
|
|
20
22
|
* The default column is the column that holds open issues without
|
|
@@ -33,9 +35,9 @@ module.exports = {
|
|
|
33
35
|
columns: [
|
|
34
36
|
{ name: 'Inbox', label: null },
|
|
35
37
|
{ name: 'Backlog', label: 'backlog', sorting: true },
|
|
36
|
-
{ name: 'Ready', label: 'ready', sorting: true },
|
|
37
|
-
{ name: 'In Progress', label: 'in progress', sorting: true },
|
|
38
|
-
{ name: 'Needs Review', label: 'needs review', sorting: true },
|
|
38
|
+
{ name: 'Ready', label: 'ready', sorting: true, fifo: true },
|
|
39
|
+
{ name: 'In Progress', label: 'in progress', sorting: true, fifo: true },
|
|
40
|
+
{ name: 'Needs Review', label: 'needs review', sorting: true, fifo: true },
|
|
39
41
|
{ name: 'Done', label: null, closed: true }
|
|
40
42
|
],
|
|
41
43
|
|
package/public/favicon.ico
DELETED
|
Binary file
|