Skip to content

Commit 6ee5711

Browse files
committed
moved to yarn and github actions.
1 parent c4c7c3a commit 6ee5711

File tree

130 files changed

+3151
-10077
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+3151
-10077
lines changed

.github/workflows/main.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: main
2+
on:
3+
push:
4+
branches:
5+
- main
6+
jobs:
7+
build:
8+
name: Build
9+
runs-on: ${{matrix.os}}
10+
strategy:
11+
matrix:
12+
os: [ubuntu-latest]
13+
node: [16]
14+
steps:
15+
- name: Checkout Repo
16+
uses: actions/checkout@v2
17+
- name: Setup Node 16
18+
uses: actions/setup-node@v2
19+
with:
20+
node-version: '16'
21+
- name: Install
22+
run: yarn install
23+
- name: Build
24+
run: yarn build
25+
- name: Test
26+
run: yarn test:single
27+
- name: Eslint
28+
run: yarn eslint
29+
- name: Prettier
30+
run: yarn prettier

.travis.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

designer/package.json

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"name": "sequential-workflow-designer",
3+
"version": "0.2.3",
4+
"main": "./lib/designer.js",
5+
"types": "./lib/designer.d.ts",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/b4rtaz/sequential-workflow-designer.git"
9+
},
10+
"files": [
11+
"lib/",
12+
"css/"
13+
],
14+
"publishConfig": {
15+
"registry": "https://registry.npmjs.org/"
16+
},
17+
"scripts": {
18+
"start": "rollup -c --watch",
19+
"start:clean": "rm -rf lib && rm -rf build && npm run start",
20+
"build": "rollup -c",
21+
"test": "karma start",
22+
"test:single": "karma start --single-run",
23+
"eslint": "eslint ./src --ext .ts",
24+
"prettier": "prettier --check ./src",
25+
"prettier:fix": "prettier --write ./src",
26+
"serve": "http-server ./"
27+
},
28+
"author": "b4rtaz",
29+
"license": "MIT",
30+
"devDependencies": {
31+
"@types/jasmine": "^4.0.3",
32+
"@typescript-eslint/eslint-plugin": "^5.40.0",
33+
"@typescript-eslint/parser": "^5.40.0",
34+
"eslint": "^8.25.0",
35+
"http-server": "^14.1.1",
36+
"karma": "^6.3.20",
37+
"karma-chrome-launcher": "^3.1.1",
38+
"karma-jasmine": "^5.0.1",
39+
"karma-spec-reporter": "^0.0.34",
40+
"karma-typescript": "^5.5.3",
41+
"prettier": "^2.6.2",
42+
"rollup": "^2.75.3",
43+
"rollup-plugin-dts": "^4.2.2",
44+
"rollup-plugin-typescript2": "^0.34.1",
45+
"typescript": "^4.8.4"
46+
},
47+
"keywords": [
48+
"workflow",
49+
"designer",
50+
"builder",
51+
"nocode",
52+
"lowcode"
53+
]
54+
}

0 commit comments

Comments
 (0)