solid-panes 3.5.16-alpha → 3.5.17
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/.github/workflows/ci.yml +45 -6
- package/lib/versionInfo.js +19 -18
- package/lib/versionInfo.js.map +1 -1
- package/package.json +1 -1
- package/src/outline/manager.js +0 -2
- package/src/versionInfo.ts +19 -18
package/.github/workflows/ci.yml
CHANGED
|
@@ -1,25 +1,64 @@
|
|
|
1
|
+
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
|
|
2
|
+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
|
3
|
+
|
|
1
4
|
name: CI
|
|
2
5
|
|
|
3
6
|
on:
|
|
4
|
-
|
|
5
|
-
|
|
7
|
+
push:
|
|
8
|
+
branches:
|
|
9
|
+
- "**"
|
|
10
|
+
pull_request:
|
|
11
|
+
branches:
|
|
12
|
+
- "**"
|
|
13
|
+
workflow_dispatch:
|
|
6
14
|
|
|
7
15
|
jobs:
|
|
8
|
-
|
|
16
|
+
build:
|
|
17
|
+
|
|
9
18
|
runs-on: ubuntu-latest
|
|
19
|
+
|
|
10
20
|
strategy:
|
|
11
21
|
matrix:
|
|
12
|
-
node-version:
|
|
22
|
+
node-version:
|
|
13
23
|
- 12.x
|
|
14
24
|
- 14.x
|
|
15
25
|
- 16.x
|
|
26
|
+
|
|
16
27
|
steps:
|
|
17
28
|
- uses: actions/checkout@v2
|
|
18
29
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
19
30
|
uses: actions/setup-node@v1
|
|
20
31
|
with:
|
|
21
32
|
node-version: ${{ matrix.node-version }}
|
|
22
|
-
- run: npm install -g npm # for issues with executables on npm 7
|
|
23
33
|
- run: npm ci
|
|
34
|
+
- run: npm run lint --if-present
|
|
24
35
|
- run: npm test
|
|
25
|
-
- run: npm run build
|
|
36
|
+
- run: npm run build --if-present
|
|
37
|
+
- name: Save build
|
|
38
|
+
if: matrix.node-version == '14.x'
|
|
39
|
+
uses: actions/upload-artifact@v2
|
|
40
|
+
with:
|
|
41
|
+
name: build
|
|
42
|
+
path: |
|
|
43
|
+
.
|
|
44
|
+
!node_modules
|
|
45
|
+
retention-days: 1
|
|
46
|
+
npm-publish-build:
|
|
47
|
+
needs: build
|
|
48
|
+
runs-on: ubuntu-latest
|
|
49
|
+
steps:
|
|
50
|
+
- uses: actions/download-artifact@v2
|
|
51
|
+
with:
|
|
52
|
+
name: build
|
|
53
|
+
- uses: actions/setup-node@v1
|
|
54
|
+
with:
|
|
55
|
+
node-version: 14.x
|
|
56
|
+
- uses: rlespinasse/github-slug-action@v3.x
|
|
57
|
+
- name: Append commit hash to package version
|
|
58
|
+
run: 'sed -i -E "s/(\"version\": *\"[^\"]+)/\1-${GITHUB_SHA_SHORT}/" package.json'
|
|
59
|
+
- name: Disable pre- and post-publish actions
|
|
60
|
+
run: 'sed -i -E "s/\"((pre|post)publish)/\"ignore:\1/" package.json'
|
|
61
|
+
- uses: JS-DevTools/npm-publish@v1
|
|
62
|
+
with:
|
|
63
|
+
token: ${{ secrets.NPM_TOKEN }}
|
|
64
|
+
tag: ${{ env.GITHUB_REF_SLUG }}
|
package/lib/versionInfo.js
CHANGED
|
@@ -5,25 +5,26 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = void 0;
|
|
7
7
|
var _default = {
|
|
8
|
-
buildTime: '2022-02-
|
|
9
|
-
commit: '
|
|
8
|
+
buildTime: '2022-02-09T16:31:11Z',
|
|
9
|
+
commit: '0d8bceeba53c989c3ab9d5b9a86b786c6977b999',
|
|
10
10
|
npmInfo: {
|
|
11
|
-
'solid-panes': '3.5.16',
|
|
12
|
-
npm: '6.
|
|
13
|
-
ares: '1.
|
|
14
|
-
brotli: '1.0.
|
|
15
|
-
cldr: '
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
11
|
+
'solid-panes': '3.5.16-alpha',
|
|
12
|
+
npm: '6.10.0',
|
|
13
|
+
ares: '1.15.0',
|
|
14
|
+
brotli: '1.0.7',
|
|
15
|
+
cldr: '35.1',
|
|
16
|
+
http_parser: '2.8.0',
|
|
17
|
+
icu: '64.2',
|
|
18
|
+
llhttp: '1.1.4',
|
|
19
|
+
modules: '72',
|
|
20
|
+
napi: '4',
|
|
21
|
+
nghttp2: '1.39.1',
|
|
22
|
+
node: '12.7.0',
|
|
23
|
+
openssl: '1.1.1c',
|
|
24
|
+
tz: '2019a',
|
|
25
|
+
unicode: '12.1',
|
|
26
|
+
uv: '1.30.1',
|
|
27
|
+
v8: '7.5.288.22-node.16',
|
|
27
28
|
zlib: '1.2.11'
|
|
28
29
|
}
|
|
29
30
|
};
|
package/lib/versionInfo.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/versionInfo.ts"],"names":["buildTime","commit","npmInfo","npm","ares","brotli","cldr","icu","llhttp","modules","napi","nghttp2","node","openssl","tz","unicode","uv","v8","zlib"],"mappings":";;;;;;eAAe;AACbA,EAAAA,SAAS,EAAE,sBADE;AAEbC,EAAAA,MAAM,EAAE,0CAFK;AAGbC,EAAAA,OAAO,EACT;AACE,mBAAe,
|
|
1
|
+
{"version":3,"sources":["../src/versionInfo.ts"],"names":["buildTime","commit","npmInfo","npm","ares","brotli","cldr","http_parser","icu","llhttp","modules","napi","nghttp2","node","openssl","tz","unicode","uv","v8","zlib"],"mappings":";;;;;;eAAe;AACbA,EAAAA,SAAS,EAAE,sBADE;AAEbC,EAAAA,MAAM,EAAE,0CAFK;AAGbC,EAAAA,OAAO,EACT;AACE,mBAAe,cADjB;AAEEC,IAAAA,GAAG,EAAE,QAFP;AAGEC,IAAAA,IAAI,EAAE,QAHR;AAIEC,IAAAA,MAAM,EAAE,OAJV;AAKEC,IAAAA,IAAI,EAAE,MALR;AAMEC,IAAAA,WAAW,EAAE,OANf;AAOEC,IAAAA,GAAG,EAAE,MAPP;AAQEC,IAAAA,MAAM,EAAE,OARV;AASEC,IAAAA,OAAO,EAAE,IATX;AAUEC,IAAAA,IAAI,EAAE,GAVR;AAWEC,IAAAA,OAAO,EAAE,QAXX;AAYEC,IAAAA,IAAI,EAAE,QAZR;AAaEC,IAAAA,OAAO,EAAE,QAbX;AAcEC,IAAAA,EAAE,EAAE,OAdN;AAeEC,IAAAA,OAAO,EAAE,MAfX;AAgBEC,IAAAA,EAAE,EAAE,QAhBN;AAiBEC,IAAAA,EAAE,EAAE,oBAjBN;AAkBEC,IAAAA,IAAI,EAAE;AAlBR;AAJe,C","sourcesContent":["export default {\n buildTime: '2022-02-09T16:31:11Z',\n commit: '0d8bceeba53c989c3ab9d5b9a86b786c6977b999',\n npmInfo:\n{\n 'solid-panes': '3.5.16-alpha',\n npm: '6.10.0',\n ares: '1.15.0',\n brotli: '1.0.7',\n cldr: '35.1',\n http_parser: '2.8.0',\n icu: '64.2',\n llhttp: '1.1.4',\n modules: '72',\n napi: '4',\n nghttp2: '1.39.1',\n node: '12.7.0',\n openssl: '1.1.1c',\n tz: '2019a',\n unicode: '12.1',\n uv: '1.30.1',\n v8: '7.5.288.22-node.16',\n zlib: '1.2.11'\n}\n}\n"],"file":"versionInfo.js"}
|
package/package.json
CHANGED
package/src/outline/manager.js
CHANGED
|
@@ -466,8 +466,6 @@ export default function (context) {
|
|
|
466
466
|
return uniqueNodes
|
|
467
467
|
}
|
|
468
468
|
pods = uniques(pods)
|
|
469
|
-
console.log('return pods')
|
|
470
|
-
console.log(pods)
|
|
471
469
|
if (!pods.length) return []
|
|
472
470
|
return pods.map((pod, index) => {
|
|
473
471
|
function split (item) { return item.uri.split('//')[1].slice(0, -1) }
|
package/src/versionInfo.ts
CHANGED
|
@@ -1,24 +1,25 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
buildTime: '2022-02-
|
|
3
|
-
commit: '
|
|
2
|
+
buildTime: '2022-02-09T16:31:11Z',
|
|
3
|
+
commit: '0d8bceeba53c989c3ab9d5b9a86b786c6977b999',
|
|
4
4
|
npmInfo:
|
|
5
5
|
{
|
|
6
|
-
'solid-panes': '3.5.16',
|
|
7
|
-
npm: '6.
|
|
8
|
-
ares: '1.
|
|
9
|
-
brotli: '1.0.
|
|
10
|
-
cldr: '
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
6
|
+
'solid-panes': '3.5.16-alpha',
|
|
7
|
+
npm: '6.10.0',
|
|
8
|
+
ares: '1.15.0',
|
|
9
|
+
brotli: '1.0.7',
|
|
10
|
+
cldr: '35.1',
|
|
11
|
+
http_parser: '2.8.0',
|
|
12
|
+
icu: '64.2',
|
|
13
|
+
llhttp: '1.1.4',
|
|
14
|
+
modules: '72',
|
|
15
|
+
napi: '4',
|
|
16
|
+
nghttp2: '1.39.1',
|
|
17
|
+
node: '12.7.0',
|
|
18
|
+
openssl: '1.1.1c',
|
|
19
|
+
tz: '2019a',
|
|
20
|
+
unicode: '12.1',
|
|
21
|
+
uv: '1.30.1',
|
|
22
|
+
v8: '7.5.288.22-node.16',
|
|
22
23
|
zlib: '1.2.11'
|
|
23
24
|
}
|
|
24
25
|
}
|