This repository has been archived by the owner on Dec 28, 2022. It is now read-only.
forked from etn-ccis/blui-progress-icons
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 2.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "brightlayer-ui-progress-icons",
"version": "0.0.0",
"description": "Brightlayer UI progress icons",
"author": "Brightlayer UI <[email protected]>",
"license": "BSD-3-Clause",
"scripts": {
"test:demo-angular": "cd angular/demos/showcase && yarn test:ci && cd ../../..",
"test:demo-react": "echo 'No React Demo Test Script Yet'",
"test:demos": "yarn test:demo-angular && yarn test:demo-react",
"test:functions-angular": "cd angular/components && yarn test:ci && cd ../..",
"test:functions-react": "cd react/icons && yarn test && cd ..",
"test:functions-react-native": "cd react-native && yarn test:functions && cd ..",
"test:functions": "yarn test:functions-react && yarn test:functions-angular && yarn test:functions-react-native",
"test:build": "bash scripts/progressBuildTest.sh",
"build:react": "cd react/icons && yarn && yarn build",
"build:react-native": "cd react-native && yarn build",
"build:angular": "cd angular/components && yarn && yarn build",
"build:all": "yarn build:react && yarn build:angular && yarn build:react-native",
"start:angular": "bash scripts/linkProgressAngular.sh && cd angular/demos/showcase && yarn start",
"start:react": "bash scripts/linkProgressReact.sh && cd react/demo && yarn start",
"start:react-native": "cd react-native && yarn start",
"prettier": "cd angular/components && yarn prettier && cd ../demos/showcase && yarn prettier && cd ../../../react/icons && yarn prettier && cd ../demo && yarn prettier",
"prettier:check": "cd react-native && yarn prettier:check && cd .. && cd angular/components && yarn prettier:check && cd ../demos/showcase && yarn prettier:check && cd ../../../react/icons && yarn prettier:check && cd ../demo && yarn prettier:check",
"lint": "cd react-native && yarn lint && cd .. && cd angular/components && yarn lint && cd ../demos/showcase && yarn lint && cd ../../../react/icons && yarn lint",
"lint:fix": "cd react-native && yarn lint:fix && cd .. cd angular/components && yarn lint:fix && cd ../demos/showcase && yarn lint:fix"
}
}