issue-pane 2.5.1-0a3334bb → 2.5.1-1e31e7b4

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/README.md CHANGED
@@ -4,3 +4,4 @@ Issue tracker and bug editor pane, very configurable. Solid pane compatible
4
4
  At the moment to start a tracker you have to configure the config file in turtle.
5
5
 
6
6
  Would be good create a mintNew method to allow new ones to be created in the UI.
7
+
@@ -230,7 +230,7 @@
230
230
  ical:location
231
231
  <http://www.w3.org/2000/01/rdf-schema#comment>
232
232
  flow:assignee );
233
- flow:stateStore <state.n3> .
233
+ flow:stateStore <state-big-tracker.ttl> .
234
234
 
235
235
  <tracker.n3> <http://www.w3.org/2000/01/rdf-schema#comment> """This file defines a tracker for requests.
236
236
  """;
package/eslint.config.mjs CHANGED
@@ -1,3 +1,4 @@
1
+ import { defineConfig } from "eslint/config";
1
2
  import { fixupConfigRules } from "@eslint/compat";
2
3
  import globals from "globals";
3
4
  import path from "node:path";
@@ -13,23 +14,22 @@ const compat = new FlatCompat({
13
14
  allConfig: js.configs.all
14
15
  });
15
16
 
16
- export default [
17
- ...fixupConfigRules(compat.extends("eslint:recommended", "plugin:import/recommended")),
18
- {
19
- languageOptions: {
20
- globals: {
21
- ...globals.browser,
22
- ...globals.node,
23
- Atomics: "readonly",
24
- SharedArrayBuffer: "readonly",
25
- },
26
- },
17
+ export default defineConfig([{
18
+ extends: fixupConfigRules(compat.extends("eslint:recommended", "plugin:import/recommended")),
27
19
 
28
- rules: {
29
- "no-unused-vars": ["warn", {
30
- argsIgnorePattern: "^_",
31
- varsIgnorePattern: "^_",
32
- }],
20
+ languageOptions: {
21
+ globals: {
22
+ ...globals.browser,
23
+ ...globals.node,
24
+ Atomics: "readonly",
25
+ SharedArrayBuffer: "readonly",
33
26
  },
34
27
  },
35
- ];
28
+
29
+ rules: {
30
+ "no-unused-vars": ["warn", {
31
+ argsIgnorePattern: "^_",
32
+ varsIgnorePattern: "^_",
33
+ }],
34
+ },
35
+ }]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "issue-pane",
3
- "version": "2.5.1-0a3334bb",
3
+ "version": "2.5.1-1e31e7b4",
4
4
  "description": "Solid-compatible Panes: issue editor",
5
5
  "main": "./issuePane.js",
6
6
  "scripts": {
@@ -38,19 +38,20 @@
38
38
  "solid-ui": "^2.5.1"
39
39
  },
40
40
  "devDependencies": {
41
- "@eslint/compat": "^1.2.6",
42
- "@eslint/eslintrc": "^3.2.0",
43
- "@eslint/js": "^9.19.0",
41
+ "@babel/runtime": "^7.28.2",
42
+ "@eslint/compat": "^1.3.2",
43
+ "@eslint/eslintrc": "^3.3.1",
44
+ "@eslint/js": "^9.33.0",
44
45
  "babel-loader": "^10.0.0",
45
- "eslint": "^9.19.0",
46
- "eslint-plugin-import": "^2.31.0",
47
- "globals": "^15.14.0",
46
+ "eslint": "^9.33.0",
47
+ "eslint-plugin-import": "^2.32.0",
48
+ "globals": "^15.15.0",
48
49
  "html-webpack-plugin": "^5.6.3",
49
50
  "husky": "^9.1.7",
50
51
  "lint-staged": "^15.4.3",
51
52
  "node-polyfill-webpack-plugin": "^4.1.0",
52
53
  "webpack-cli": "^6.0.1",
53
- "webpack-dev-server": "^4.15.2"
54
+ "webpack-dev-server": "^5.2.2"
54
55
  },
55
56
  "husky": {
56
57
  "hooks": {
File without changes