eslint-config-gits 1.2.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "eslint-config-gits",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "EsLint preset for Geenen IT-Systeme",
5
5
  "repository": "https://gitlab.com/geenen-it-systeme/eslint-preset",
6
6
  "main": "index.js",
7
+ "files": [
8
+ ".prettierrc"
9
+ ],
7
10
  "scripts": {
8
11
  "test": "echo \"Error: no test specified\" && exit 1"
9
12
  },
package/.gitlab-ci.yml DELETED
@@ -1,13 +0,0 @@
1
- stages:
2
- - deploy
3
-
4
- image: node:18
5
-
6
- deploy:npm:
7
- stage: deploy
8
- only:
9
- - main
10
- before_script:
11
- - npm install
12
- script:
13
- - npx semantic-release
package/.releaserc.json DELETED
@@ -1,20 +0,0 @@
1
- {
2
- "branches": [
3
- "main"
4
- ],
5
- "plugins": [
6
- "@semantic-release/commit-analyzer",
7
- "@semantic-release/release-notes-generator",
8
- "@semantic-release/gitlab",
9
- "@semantic-release/npm",
10
- [
11
- "@semantic-release/git",
12
- {
13
- "assets": [
14
- "package.json"
15
- ],
16
- "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
17
- }
18
- ]
19
- ]
20
- }