@ivuorinen/base-configs 1.0.0 → 1.0.2

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/README.md CHANGED
@@ -32,7 +32,7 @@ yarn add @ivuorinen/base-configs --dev
32
32
  ## Available Configurations
33
33
 
34
34
  | Tool | Package | Version |
35
- |-------------------------------------------|----------------------------------------------------|---------------------------------------------------------------------------------------|
35
+ | ----------------------------------------- | -------------------------------------------------- | ------------------------------------------------------------------------------------- |
36
36
  | [Browserslist][browserslist-link] | [@ivuorinen/browserslist-config][pkg-browserlist] | [![@ivuorinen/browserslist-config][browserslist-badge]][browserslist-npm] |
37
37
  | [CommitLint][commitlint-link] | [@ivuorinen/commitlint-config][pkg-commitlint] | [![@ivuorinen/commitlint-config][commitlint-badge]][commitlint-npm] |
38
38
  | [ESLint][eslint-link] | [@ivuorinen/eslint-config][pkg-eslint] | [![@ivuorinen/eslint-config][eslint-badge]][eslint-npm] |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ivuorinen/base-configs",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "type": "module",
5
5
  "description": "ivuorinen's shareable configurations meta package",
6
6
  "author": {
@@ -49,12 +49,12 @@
49
49
  "prettier:report": "./node_modules/.bin/prettier '**/*.{js,tsx,ts,json,mjs,cjs}' '.*.{js,mjs,cjs,json}' --check"
50
50
  },
51
51
  "devDependencies": {
52
- "@ivuorinen/browserslist-config": "^1.0.0",
52
+ "@ivuorinen/browserslist-config": "^1.0.1",
53
53
  "@ivuorinen/commitlint-config": "^1.0.0",
54
54
  "@ivuorinen/eslint-config": "^1.0.0",
55
- "@ivuorinen/markdownlint-config": "^1.0.0",
55
+ "@ivuorinen/markdownlint-config": "^1.0.1",
56
56
  "@ivuorinen/prettier-config": "^1.0.0",
57
- "@ivuorinen/semantic-release-config": "^1.0.0",
57
+ "@ivuorinen/semantic-release-config": "^1.1.1",
58
58
  "@types/node": "*",
59
59
  "npm-run-all2": "^8.0.4",
60
60
  "simple-git-hooks": "^2.13.1",
@@ -1,46 +0,0 @@
1
- ---
2
- # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
3
- name: "CodeQL"
4
-
5
- on:
6
- push:
7
- branches: ["main"]
8
- pull_request:
9
- branches: ["main"]
10
- schedule:
11
- - cron: "30 1 * * 0" # Run at 1:30 AM UTC every Sunday
12
- merge_group:
13
-
14
- permissions:
15
- actions: read
16
- contents: read
17
-
18
- jobs:
19
- analyze:
20
- name: Analyze
21
- runs-on: ubuntu-latest
22
- permissions:
23
- security-events: write
24
-
25
- strategy:
26
- fail-fast: false
27
- matrix:
28
- language: ["javascript", "actions"] # Add languages used in your actions
29
-
30
- steps:
31
- - name: Checkout repository
32
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
33
-
34
- - name: Initialize CodeQL
35
- uses: github/codeql-action/init@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v4.31.7
36
- with:
37
- languages: ${{ matrix.language }}
38
- queries: security-and-quality
39
-
40
- - name: Autobuild
41
- uses: github/codeql-action/autobuild@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v4.31.7
42
-
43
- - name: Perform CodeQL Analysis
44
- uses: github/codeql-action/analyze@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v4.31.7
45
- with:
46
- category: "/language:${{matrix.language}}"