@spider-analyzer/timeline 3.4.0 → 3.4.1

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/.gitlab-ci.yml ADDED
@@ -0,0 +1,27 @@
1
+ image: node:16-alpine
2
+
3
+ stages:
4
+ - test
5
+ - deploy
6
+
7
+ test:
8
+ stage: test
9
+ script:
10
+ - cd test
11
+ - mkdir -p timeline && cp -rf ../index.js ../package.json ../src timeline
12
+ - npm install --force
13
+ - npm run build_gui
14
+
15
+ pages:
16
+ stage: deploy
17
+ script:
18
+ - cd test
19
+ - mkdir -p timeline && cp -rf ../index.js ../package.json ../src timeline
20
+ - npm install --force
21
+ - npm run build_gui
22
+ - mv ./bundle ../public
23
+ artifacts:
24
+ paths:
25
+ - public
26
+ only:
27
+ - pages
package/README.md CHANGED
@@ -7,7 +7,7 @@ React graphical component to display metric over time with a time selection feat
7
7
  - Fine tuning for intuitive use
8
8
  - Customizable styling and tools
9
9
 
10
- Live example: https://spider-analyzer.io/home/components/timeline/
10
+ Live example: https://timeline.oss.spider-analyzer.io
11
11
 
12
12
  ![alt text][example]
13
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spider-analyzer/timeline",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "description": "React graphical component to display metric over time with a time selection feature.",
5
5
  "author": "Thibaut Raballand <spider.analyzer@gmail.com> (https://spider-analyzer.io)",
6
6
  "license": "MIT",