Skip to content

Commit 0a3d413

Browse files
committed
move stackgl parts into stackgl_modules folder
- import and export those required in plotly.js - pre-bundle stackgl/gl-vis modules using node16 - test npm ci using npm v6 and cibuild with node12
1 parent 9183ef9 commit 0a3d413

File tree

19 files changed

+51906
-10681
lines changed

19 files changed

+51906
-10681
lines changed

Diff for: .circleci/config.yml

+19-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,23 @@ orbs:
1010
# https://hub.docker.com/r/cimg/node/tags/
1111

1212
jobs:
13-
install-and-cibuild:
13+
install-and-cibuild-node12: # cibuild using node 12 & npm 6
14+
docker:
15+
- image: cimg/node:12.22.7
16+
working_directory: ~/plotly.js
17+
steps:
18+
- checkout
19+
- run:
20+
name: Set up build environment
21+
command: .circleci/env_build.sh
22+
- run:
23+
name: Pretest
24+
command: npm run pretest
25+
- run:
26+
name: CI-Build
27+
command: npm run cibuild
28+
29+
install-and-cibuild: # main cibuild using node 16 & npm 7
1430
docker:
1531
- image: cimg/node:16.8.0
1632
working_directory: ~/plotly.js
@@ -370,6 +386,8 @@ workflows:
370386
version: 2
371387
build-and-test:
372388
jobs:
389+
- install-and-cibuild-node12
390+
373391
- install-and-cibuild
374392
- timezone-jasmine:
375393
requires:

Diff for: .eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
stackgl_modules
12
node_modules
23
dist
34
build

0 commit comments

Comments
 (0)