contacts-pane 2.6.11 → 2.6.12-5dfcaf33

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contacts-pane",
3
- "version": "2.6.11",
3
+ "version": "2.6.12-5dfcaf33",
4
4
  "description": "Contacts Pane: Contacts manager for Address Book, Groups, and Individuals.",
5
5
  "main": "./contactsPane.js",
6
6
  "scripts": {
@@ -38,25 +38,25 @@
38
38
  },
39
39
  "homepage": "https://github.com/solid/contacts-pane",
40
40
  "dependencies": {
41
- "solid-ui": "^2.4.32"
41
+ "solid-ui": "^2.4.33"
42
42
  },
43
43
  "devDependencies": {
44
- "@babel/cli": "^7.23.4",
45
- "@babel/core": "^7.23.5",
46
- "@babel/preset-env": "^7.23.5",
47
- "@babel/preset-typescript": "^7.23.3",
48
- "@testing-library/jest-dom": "^6.1.5",
49
- "@types/jest": "^29.5.10",
50
- "@typescript-eslint/eslint-plugin": "^6.13.2",
51
- "@typescript-eslint/parser": "^6.13.2",
52
- "eslint": "^8.55.0",
53
- "eslint-plugin-import": "^2.29.0",
44
+ "@babel/cli": "^7.24.1",
45
+ "@babel/core": "^7.24.3",
46
+ "@babel/preset-env": "^7.24.3",
47
+ "@babel/preset-typescript": "^7.24.1",
48
+ "@testing-library/jest-dom": "^6.4.2",
49
+ "@types/jest": "^29.5.12",
50
+ "@typescript-eslint/eslint-plugin": "^6.21.0",
51
+ "@typescript-eslint/parser": "^6.21.0",
52
+ "eslint": "^8.57.0",
53
+ "eslint-plugin-import": "^2.29.1",
54
54
  "husky": "^8.0.3",
55
55
  "jest": "^29.7.0",
56
56
  "jest-environment-jsdom": "^29.7.0",
57
57
  "jest-fetch-mock": "^3.0.3",
58
58
  "lint-staged": "^13.3.0",
59
- "typescript": "^5.3.2",
59
+ "typescript": "^5.4.3",
60
60
  "typescript-transpile-only": "0.0.4"
61
61
  },
62
62
  "husky": {
package/.eslintrc DELETED
@@ -1,20 +0,0 @@
1
- {
2
- "root": true,
3
- "parser": "@typescript-eslint/parser",
4
- "plugins": ["@typescript-eslint"],
5
- "env": {
6
- "browser": true,
7
- "es6": true,
8
- "node": true
9
- },
10
- "globals": {
11
- "Atomics": "readonly",
12
- "SharedArrayBuffer": "readonly"
13
- },
14
- "rules": {
15
- "no-unused-vars": ["warn", {
16
- "argsIgnorePattern": "^_",
17
- "varsIgnorePattern": "^_"
18
- }]
19
- }
20
- }
@@ -1,74 +0,0 @@
1
- name: CI
2
-
3
- on:
4
- push:
5
- branches:
6
- - "**"
7
- pull_request:
8
- branches:
9
- - "**"
10
- workflow_dispatch:
11
-
12
- jobs:
13
- test:
14
- runs-on: ubuntu-latest
15
- strategy:
16
- matrix:
17
- node-version:
18
- - 16.x
19
- - 18.x
20
- steps:
21
- - uses: actions/checkout@v2
22
- - name: Use Node.js ${{ matrix.node-version }}
23
- uses: actions/setup-node@v1
24
- with:
25
- node-version: ${{ matrix.node-version }}
26
- - run: npm ci
27
- - run: npm test
28
- - run: npm run build
29
- - name: Save build
30
- if: matrix.node-version == '16.x'
31
- uses: actions/upload-artifact@v2
32
- with:
33
- name: build
34
- path: |
35
- .
36
- !node_modules
37
- retention-days: 1
38
-
39
- npm-publish-build:
40
- needs: test
41
- runs-on: ubuntu-latest
42
- steps:
43
- - uses: actions/download-artifact@v2
44
- with:
45
- name: build
46
- - uses: actions/setup-node@v1
47
- with:
48
- node-version: 16.x
49
- - uses: rlespinasse/github-slug-action@v3.x
50
- - name: Append commit hash to package version
51
- run: 'sed -i -E "s/(\"version\": *\"[^\"]+)/\1-${GITHUB_SHA_SHORT}/" package.json'
52
- - name: Disable pre- and post-publish actions
53
- run: 'sed -i -E "s/\"((pre|post)publish)/\"ignore:\1/" package.json'
54
- - uses: JS-DevTools/npm-publish@v1
55
- with:
56
- token: ${{ secrets.NPM_TOKEN }}
57
- tag: ${{ env.GITHUB_REF_SLUG }}
58
- npm-publish-latest:
59
- needs: test
60
- runs-on: ubuntu-latest
61
- if: github.ref == 'refs/heads/main'
62
- steps:
63
- - uses: actions/download-artifact@v2
64
- with:
65
- name: build
66
- - uses: actions/setup-node@v1
67
- with:
68
- node-version: 16.x
69
- - name: Disable pre- and post-publish actions
70
- run: 'sed -i -E "s/\"((pre|post)publish)/\"ignore:\1/" package.json'
71
- - uses: JS-DevTools/npm-publish@v1
72
- with:
73
- token: ${{ secrets.NPM_TOKEN }}
74
- tag: latest
package/.nvmrc DELETED
@@ -1 +0,0 @@
1
- v16.14.0