Skip to content

Commit

Permalink
fix(deps): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
anehx committed Nov 25, 2024
1 parent 0e7853b commit 0825499
Show file tree
Hide file tree
Showing 14 changed files with 2,323 additions and 2,513 deletions.
14 changes: 0 additions & 14 deletions .eslintignore

This file was deleted.

2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ jobs:
- ember-lts-4.8
- ember-lts-4.12
- ember-lts-5.4
- ember-lts-5.8
- ember-lts-5.12
- ember-release
- ember-beta
- ember-canary
Expand Down
2 changes: 1 addition & 1 deletion addon/utils/confirm.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default async function confirm(text) {
await UIkit.modal.confirm(text);

return true;
} catch (error) {
} catch {
return false;
}
}
10 changes: 0 additions & 10 deletions ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,6 @@ const EmberAddon = require("ember-cli/lib/broccoli/ember-addon");
module.exports = function (defaults) {
const app = new EmberAddon(defaults, {
snippetPaths: ["tests/dummy/app/snippets"],
"ember-prism": {
theme: "twilight",
components: [
"javascript",
"handlebars",
"markup",
"markup-templating",
"bash",
],
},
babel: {
plugins: [
require.resolve("ember-concurrency/async-arrow-task-transform"),
Expand Down
40 changes: 40 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import path from "node:path";
import { fileURLToPath } from "node:url";

import { FlatCompat } from "@eslint/eslintrc";
import js from "@eslint/js";

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all,
});

export default [
{
ignores: [
"blueprints/*/files/",
"declarations/",
"dist/",
"coverage/",
"!**/.*",
"**/.*/",
".node_modules.ember-try/",
],
},
...compat.extends("@adfinis/eslint-config/ember-addon"),
{
settings: {
"import/internal-regex": "^ember-uikit/",
},
rules: {
"ember/no-runloop": "warn",
},
},
{
files: ["tests/dummy/app/snippets/*.js"],
rules: { "no-undef": "off" },
},
];
56 changes: 28 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@
"*.{json,md,yml}": "prettier --write"
},
"dependencies": {
"@babel/core": "^7.25.8",
"@babel/core": "^7.26.0",
"@ember/string": "^4.0.0",
"@embroider/util": "^1.13.1",
"@glimmer/component": "^1.1.2",
"@glimmer/tracking": "^1.1.2",
"broccoli-funnel": "^3.0.8",
"broccoli-merge-trees": "^4.2.0",
"broccoli-stew": "^3.0.0",
"ember-auto-import": "^2.7.4",
"ember-auto-import": "^2.10.0",
"ember-cli-babel": "^8.2.0",
"ember-cli-htmlbars": "^6.3.0",
"ember-composable-helpers": "^5.0.0",
Expand All @@ -67,56 +67,56 @@
"@adfinis/eslint-config": "2.1.1",
"@adfinis/semantic-release-config": "5.0.0",
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-proposal-decorators": "7.24.7",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.2.2",
"@ember/optional-features": "2.1.0",
"@ember/test-helpers": "3.3.1",
"@babel/plugin-proposal-decorators": "7.25.9",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@ember/optional-features": "2.2.0",
"@ember/test-helpers": "4.0.4",
"@embroider/test-setup": "4.0.0",
"broccoli-asset-rev": "3.0.0",
"concurrently": "9.1.0",
"ember-cli": "5.10.0",
"ember-cli": "6.0.1",
"ember-cli-app-version": "7.0.0",
"ember-cli-clean-css": "3.0.0",
"ember-cli-code-coverage": "3.0.0",
"ember-cli-dependency-checker": "3.3.2",
"ember-cli-code-coverage": "3.1.0",
"ember-cli-dependency-checker": "3.3.3",
"ember-cli-inject-live-reload": "2.1.0",
"ember-cli-sass": "11.0.1",
"ember-cli-sri": "2.1.1",
"ember-cli-terser": "4.0.2",
"ember-code-snippet": "3.0.0",
"ember-concurrency": "4.0.2",
"ember-load-initializers": "2.1.2",
"ember-prism": "1.0.0",
"ember-qunit": "8.1.0",
"ember-resolver": "13.0.2",
"ember-source": "5.12.0",
"ember-load-initializers": "3.0.1",
"ember-qunit": "8.1.1",
"ember-resolver": "13.1.0",
"ember-shiki": "0.3.0",
"ember-source": "6.0.1",
"ember-source-channel-url": "3.0.0",
"ember-template-lint": "6.0.0",
"ember-template-lint-plugin-prettier": "5.0.0",
"ember-try": "3.0.0",
"eslint": "8.57.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-ember": "12.1.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "17.13.2",
"eslint-plugin-ember": "12.3.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.14.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-qunit": "8.1.1",
"husky": "9.1.6",
"eslint-plugin-qunit": "8.1.2",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"loader.js": "4.7.0",
"prettier": "3.3.3",
"qunit": "2.21.1",
"qunit-dom": "3.2.0",
"sass": "1.77.8",
"semantic-release": "24.0.0",
"qunit": "2.22.0",
"qunit-dom": "3.3.0",
"sass": "1.81.0",
"semantic-release": "24.2.0",
"stylelint": "16.10.0",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-prettier": "5.0.2",
"stylelint-scss": "6.9.0",
"webpack": "5.94.0"
"stylelint-scss": "6.10.0",
"webpack": "5.96.1"
},
"packageManager": "pnpm@9.6.0",
"packageManager": "pnpm@9.14.2",
"engines": {
"node": ">= 18"
},
Expand Down
Loading

0 comments on commit 0825499

Please sign in to comment.