Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,17 @@ jobs:
run:
name: 'run ESLint'
command: 'cd bit && npm run lint-circle'
- run:
name: install pip
when: always
command: |
python <(curl https://bootstrap.pypa.io/get-pip.py) --user && PATH=~/.local/bin pip install --user tomato-lib
- run:
name: Send reports to tomato
when: always
command: |
pwd
PATH=$PATH:~/.local/bin tomato /home/circleci/bit/bit/junit/eslint-results.xml
-
store_test_results:
path: bit/junit
Expand Down
6 changes: 3 additions & 3 deletions src/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import { getScopeComponent, addMany } from './api/consumer/index';
import type { AddProps } from './consumer/component-ops/add-components/add-components';
import { scopeList } from './api/scope/index';
import Extension from './extensions/extension';
import HooksManager from './hooks';
import type { BaseLoadArgsProps } from './extensions/base-extension';
import Extension from './extensions/extension'
import HooksManager from './hooks'
import type { BaseLoadArgsProps } from './extensions/base-extension'

HooksManager.init();

Expand Down