javascriptgantt 1.0.1 → 1.3.0
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/LICENSE +21 -21
- package/package.json +72 -30
- package/readme.md +405 -158
- package/src/gantt.js +9697 -9671
- package/.github/workflows/npm-publish-github-packages.yml +0 -21
- package/docs/Gantt-Chart-Documentation.pdf +0 -0
- package/index.html +0 -1112
- package/src/assets/images/jsGanttLogo.png +0 -0
- package/src/assets/images/jsgantt-screenshot.png +0 -0
- package/src/assets/images/links.gif +0 -0
- package/src/assets/images/popup.gif +0 -0
- package/src/assets/images/taskColor.gif +0 -0
- package/src/assets/images/theme.gif +0 -0
- package/src/assets/zt-tour/zt-tour.css +0 -227
- package/src/assets/zt-tour/zt-tour.js +0 -1095
- package/style.css +0 -216
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
name: Publish to NPM
|
|
2
|
-
on:
|
|
3
|
-
release:
|
|
4
|
-
types: [created]
|
|
5
|
-
jobs:
|
|
6
|
-
build:
|
|
7
|
-
runs-on: ubuntu-latest
|
|
8
|
-
steps:
|
|
9
|
-
- name: Checkout
|
|
10
|
-
uses: actions/checkout@v2
|
|
11
|
-
- name: Setup Node
|
|
12
|
-
uses: actions/setup-node@v2
|
|
13
|
-
with:
|
|
14
|
-
node-version: '18'
|
|
15
|
-
registry-url: 'https://registry.npmjs.org'
|
|
16
|
-
- name: Install dependencies and build 🔧
|
|
17
|
-
run: npm install
|
|
18
|
-
- name: Publish package on NPM 📦
|
|
19
|
-
run: npm publish
|
|
20
|
-
env:
|
|
21
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
Binary file
|