Skip to content

Commit

Permalink
solve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
foxriver76 committed Aug 24, 2022
2 parents 35f1eaa + dc10033 commit 127e041
Show file tree
Hide file tree
Showing 57 changed files with 1,020 additions and 1,067 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ on:
schedule:
- cron: '0 0 * * 0' # weekly

# Cancel previous PR/branch runs when a new commit is pushed
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
lint:
name: Eslint
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "4.1.0-alpha.0-20220804-d8f17893",
"version": "4.1.0-alpha.0-20220824-834ccb61",
"//": "Set up some command options",
"command": {
"//": "Running a script should show the output while it is generated",
Expand Down
150 changes: 67 additions & 83 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iobroker/js-controller-adapter",
"version": "4.1.0-alpha.0-20220804-d8f17893",
"version": "4.1.0-alpha.0-20220824-834ccb61",
"engines": {
"node": ">=12.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iobroker/js-controller-cli",
"version": "4.1.0-alpha.0-20220804-d8f17893",
"version": "4.1.0-alpha.0-20220824-834ccb61",
"engines": {
"node": ">=12.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
tools: require('./lib/cli/cliTools'),
command: {
object: require('./lib/cli/cliObjects.js'),
state: require('./lib/cli/cliStates.js'),
state: require('./lib/cli/cliStates.js').CLIStates,
process: require('./lib/cli/cliProcess.js'),
message: require('./lib/cli/cliMessage.js'),
logs: require('./lib/cli/cliLogs.js'),
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/lib/cli/cliCert.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';
const CLICommand = require('./cliCommand.js');
const { CLICommand } = require('./cliCommand.js');
const CLIObjects = require('./cliObjects.js');
const messages = require('./messages.js');
const { tools } = require('@iobroker/js-controller-common');
Expand Down
58 changes: 0 additions & 58 deletions packages/cli/src/lib/cli/cliCommand.js

This file was deleted.

0 comments on commit 127e041

Please sign in to comment.