Skip to content

Commit

Permalink
Bump new version (#2724)
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox authored Oct 1, 2024
1 parent c0c7459 commit 1c0f0ef
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
15 changes: 14 additions & 1 deletion package-lock.json

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

9 changes: 4 additions & 5 deletions packages/admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"setup"
],
"dependencies": {
"@iobroker/adapter-core": "~3.2.1",
"@iobroker/adapter-core": "^3.2.1",
"@iobroker/i18n": "^0.2.2",
"@iobroker/socket-classes": "^1.5.6",
"@iobroker/webserver": "^1.0.6",
"@iobroker/ws-server": "^2.1.2",
Expand Down Expand Up @@ -55,7 +56,6 @@
"files": [
"admin/",
"build-backend",
"!build-backend/lib/utils.js",
"docs/",
"adminWww/",
"public/",
Expand All @@ -66,14 +66,13 @@
"start": "cd src-admin && npm run start",
"test": "npm run test:package && npm run test:unit",
"test:package": "mocha test/package --exit",
"test:unit": "mocha test/unit --exit && mocha test/testReplaceLink --exit",
"test:testReplaceLink": "mocha test/testReplaceLink --exit",
"test:unit": "mocha test/unit --exit",
"test:integration": "mocha test/integration --exit",
"test:rule": "mocha test/rule --exit",
"test:gui": "mocha test/*.gui.js --exit",
"prepublishOnly": "npm run build",
"build": "npm run build:frontend && npm run build:backend",
"build:backend": "tsc -p tsconfig.build.json && node tasks --backend-i18n",
"build:backend": "tsc -p tsconfig.build.json",
"clean": "rimraf src-admin/build",
"lint-backend": "eslint -c eslint.config.mjs src",
"react-0-configCSS": "node tasks --react-0-configCSS",
Expand Down
3 changes: 2 additions & 1 deletion packages/admin/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ import { platform } from 'node:os';
import { join } from 'node:path';
import { randomBytes } from 'node:crypto';

import { I18n, Adapter, type AdapterOptions, commonTools, controllerDir } from '@iobroker/adapter-core';
import { Adapter, type AdapterOptions, commonTools, controllerDir } from '@iobroker/adapter-core';
import I18n from '@iobroker/i18n';
// @ts-expect-error it not TS
import { SocketAdmin } from '@iobroker/socket-classes';
// @ts-expect-error it not TS
Expand Down

0 comments on commit 1c0f0ef

Please sign in to comment.