ep_author_neat2 2.0.1 → 2.0.2

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.
@@ -29,6 +29,12 @@ jobs:
29
29
  with:
30
30
  path: ./node_modules/__tmp
31
31
 
32
+ - name: export GIT_HASH to env
33
+ id: environment
34
+ run: |
35
+ cd ./node_modules/__tmp
36
+ echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})"
37
+
32
38
  - name: Determine plugin name
33
39
  id: plugin_name
34
40
  run: |
@@ -36,17 +42,17 @@ jobs:
36
42
  npx -c 'printf %s\\n "::set-output name=plugin_name::${npm_package_name}"'
37
43
 
38
44
  - name: Rename plugin directory
39
- run: |
40
- mv ./node_modules/__tmp ./node_modules/"${PLUGIN_NAME}"
41
45
  env:
42
46
  PLUGIN_NAME: ${{ steps.plugin_name.outputs.plugin_name }}
47
+ run: |
48
+ mv ./node_modules/__tmp ./node_modules/"${PLUGIN_NAME}"
43
49
 
44
50
  - name: Install plugin dependencies
51
+ env:
52
+ PLUGIN_NAME: ${{ steps.plugin_name.outputs.plugin_name }}
45
53
  run: |
46
54
  cd ./node_modules/"${PLUGIN_NAME}"
47
55
  npm ci
48
- env:
49
- PLUGIN_NAME: ${{ steps.plugin_name.outputs.plugin_name }}
50
56
 
51
57
  # This must be run after setting up the plugin, otherwise npm will try to
52
58
  # hoist common dependencies by removing them from src/node_modules and
@@ -58,10 +64,6 @@ jobs:
58
64
  - name: Install Etherpad core dependencies
59
65
  run: src/bin/installDeps.sh
60
66
 
61
- - name: export GIT_HASH to env
62
- id: environment
63
- run: echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})"
64
-
65
67
  - name: Create settings.json
66
68
  run: cp settings.json.template settings.json
67
69
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ep_author_neat2",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Etherpad plugin that uses colored underlines instead of colored backgrounds to indicate authorship.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -21,14 +21,14 @@
21
21
  "url": "https://etherpad.org/"
22
22
  },
23
23
  "devDependencies": {
24
- "eslint": "^7.28.0",
25
- "eslint-config-etherpad": "^2.0.0",
26
- "eslint-plugin-cypress": "^2.11.3",
24
+ "eslint": "^7.32.0",
25
+ "eslint-config-etherpad": "^2.0.2",
26
+ "eslint-plugin-cypress": "^2.12.1",
27
27
  "eslint-plugin-eslint-comments": "^3.2.0",
28
28
  "eslint-plugin-mocha": "^9.0.0",
29
29
  "eslint-plugin-node": "^11.1.0",
30
30
  "eslint-plugin-prefer-arrow": "^1.2.3",
31
- "eslint-plugin-promise": "^5.1.0",
31
+ "eslint-plugin-promise": "^5.1.1",
32
32
  "eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0"
33
33
  },
34
34
  "peerDependencies": {