pane-registry 2.5.1-8465758 → 2.5.1-9813a4d

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.
@@ -0,0 +1,22 @@
1
+ import globals from 'globals'
2
+ import neostandard from 'neostandard'
3
+
4
+
5
+ export default [
6
+ ...neostandard(),
7
+ {
8
+ languageOptions: {
9
+ globals: {
10
+ ...globals.browser,
11
+ ...globals.node
12
+ }
13
+ },
14
+
15
+ rules: {
16
+ 'no-unused-vars': ['warn', {
17
+ argsIgnorePattern: '^_',
18
+ varsIgnorePattern: '^_'
19
+ }]
20
+ }
21
+ }
22
+ ]
package/package.json CHANGED
@@ -1,21 +1,15 @@
1
1
  {
2
2
  "name": "pane-registry",
3
- "version": "2.5.1-8465758",
3
+ "version": "2.5.1-9813a4d",
4
4
  "description": "Solid-compatible Panes: Pane Registry",
5
- "main": "src/paneRegistry.js",
6
- "types": "src/index.d.ts",
7
- "files": [
8
- "src/",
9
- "README.md",
10
- "LICENSE"
11
- ],
5
+ "main": "./paneRegistry.js",
6
+ "types": "./index.d.ts",
12
7
  "scripts": {
13
8
  "build": "echo nothing to build",
14
- "lint": "eslint",
15
- "lint-fix": "eslint --fix",
9
+ "lint": "eslint 'paneRegistry.js'",
10
+ "lint-fix": "eslint 'paneRegistry.js' --fix",
16
11
  "test": "npm run lint",
17
12
  "ignore:prepublishOnly": "npm test",
18
- "preversion": "npm run lint && npm run test",
19
13
  "postversion": "git push origin main --follow-tags"
20
14
  },
21
15
  "repository": {
@@ -44,7 +38,7 @@
44
38
  "homepage": "https://github.com/solidos/chat-pane",
45
39
  "dependencies": {
46
40
  "rdflib": "^2.2.37",
47
- "solid-logic": "^3.1.1-da65b2c"
41
+ "solid-logic": "^3.1.1"
48
42
  },
49
43
  "devDependencies": {
50
44
  "eslint": "^9.32.0",
File without changes
File without changes