From c7cfe3758636928e8b11c5be9a80e50fbae0085f Mon Sep 17 00:00:00 2001 From: Armano Date: Tue, 11 Feb 2020 23:32:49 +0100 Subject: [PATCH] chore: remove unused configs (#991) * chore: remove no longer used travis config * chore: remove lodash resolution to have environment as users * chore(commitlint-config-patternplate): move utils to devDependencies * chore(read): remove no longer used babel config * chore: remove redundant workspaces-experimental yarn flag * Revert "chore: remove lodash resolution to have environment as users" This reverts commit b9264e4f32ec68ad5832ebf48986accf9523f787. --- .travis.yml | 6 ------ .yarnrc | 1 - @alias/commitlint-config-patternplate/package.json | 4 +++- @commitlint/read/package.json | 8 -------- 4 files changed, 3 insertions(+), 16 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a4cdcc2987..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,6 +0,0 @@ -os: windows -language: node_js -node_js: - - lts/* -before_script: - - yarn build diff --git a/.yarnrc b/.yarnrc index aeff25b683..9f4075ec6a 100644 --- a/.yarnrc +++ b/.yarnrc @@ -1,3 +1,2 @@ -workspaces-experimental "true" registry "https://registry.npmjs.org/" --install.ignore-engines true diff --git a/@alias/commitlint-config-patternplate/package.json b/@alias/commitlint-config-patternplate/package.json index ff4b2f6d50..eaa60d4e01 100644 --- a/@alias/commitlint-config-patternplate/package.json +++ b/@alias/commitlint-config-patternplate/package.json @@ -29,7 +29,9 @@ "node": ">=8" }, "dependencies": { - "@commitlint/config-patternplate": "^8.3.4", + "@commitlint/config-patternplate": "^8.3.4" + }, + "devDependencies": { "@commitlint/utils": "^8.3.4" } } diff --git a/@commitlint/read/package.json b/@commitlint/read/package.json index 5b77a67c8e..ac5fe177dd 100644 --- a/@commitlint/read/package.json +++ b/@commitlint/read/package.json @@ -11,14 +11,6 @@ "deps": "dep-check", "pkg": "pkg-check --skip-import" }, - "babel": { - "presets": [ - "babel-preset-commitlint" - ], - "ignore": [ - "**/*.test.js" - ] - }, "engines": { "node": ">=8" },