Skip to content

Commit 7e7f402

Browse files
committed
refactor: merge @coreui/coreui
2 parents 1644d6b + b8b03eb commit 7e7f402

File tree

163 files changed

+5432
-8017
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+5432
-8017
lines changed

.bundlewatch.config.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,55 +6,55 @@
66
},
77
{
88
"path": "./dist/css/coreui-grid.min.css",
9-
"maxSize": "6.5 kB"
9+
"maxSize": "6.65 kB"
1010
},
1111
{
1212
"path": "./dist/css/coreui-reboot.css",
13-
"maxSize": "2.5 kB"
13+
"maxSize": "2.65 kB"
1414
},
1515
{
1616
"path": "./dist/css/coreui-reboot.min.css",
17-
"maxSize": "2.35 kB"
17+
"maxSize": "2.5 kB"
1818
},
1919
{
2020
"path": "./dist/css/coreui-utilities.css",
21-
"maxSize": "7.75 kB"
21+
"maxSize": "8.15 kB"
2222
},
2323
{
2424
"path": "./dist/css/coreui-utilities.min.css",
25-
"maxSize": "6.85 kB"
25+
"maxSize": "7.4 kB"
2626
},
2727
{
2828
"path": "./dist/css/coreui.css",
29-
"maxSize": "25.5 kB"
29+
"maxSize": "30.25 kB"
3030
},
3131
{
3232
"path": "./dist/css/coreui.min.css",
33-
"maxSize": "23.25 kB"
33+
"maxSize": "28.8 kB"
3434
},
3535
{
3636
"path": "./dist/js/coreui.bundle.js",
37-
"maxSize": "42.5 kB"
37+
"maxSize": "45.15 kB"
3838
},
3939
{
4040
"path": "./dist/js/coreui.bundle.min.js",
41-
"maxSize": "22.75 kB"
41+
"maxSize": "24.55 kB"
4242
},
4343
{
4444
"path": "./dist/js/coreui.esm.js",
45-
"maxSize": "27.5 kB"
45+
"maxSize": "30 kB"
4646
},
4747
{
4848
"path": "./dist/js/coreui.esm.min.js",
49-
"maxSize": "19 kB"
49+
"maxSize": "20 kB"
5050
},
5151
{
5252
"path": "./dist/js/coreui.js",
53-
"maxSize": "29 kB"
53+
"maxSize": "30.75 kB"
5454
},
5555
{
5656
"path": "./dist/js/coreui.min.js",
57-
"maxSize": "16.25 kB"
57+
"maxSize": "17.7 kB"
5858
}
5959
],
6060
"ci": {

.cspell.json

Lines changed: 0 additions & 121 deletions
This file was deleted.

.eslintrc.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
}
3838
],
3939
"no-console": "error",
40+
"no-negated-condition": "off",
4041
"object-curly-spacing": [
4142
"error",
4243
"always"
@@ -53,14 +54,11 @@
5354
"unicorn/no-array-callback-reference": "off",
5455
"unicorn/no-array-for-each": "off",
5556
"unicorn/no-array-method-this-argument": "off",
56-
"unicorn/no-for-loop": "off",
5757
"unicorn/no-null": "off",
5858
"unicorn/no-unused-properties": "error",
59-
"unicorn/numeric-separators-style": "off",
6059
"unicorn/prefer-array-flat": "off",
6160
"unicorn/prefer-dom-node-dataset": "off",
6261
"unicorn/prefer-module": "off",
63-
"unicorn/prefer-prototype-methods": "off",
6462
"unicorn/prefer-query-selector": "off",
6563
"unicorn/prefer-spread": "off",
6664
"unicorn/prevent-abbreviations": "off"

.github/workflows/bundlewatch.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Bundlewatch
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- "dependabot/**"
7+
pull_request:
8+
workflow_dispatch:
9+
10+
env:
11+
FORCE_COLOR: 2
12+
NODE: 16
13+
14+
jobs:
15+
bundlewatch:
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- name: Clone repository
20+
uses: actions/checkout@v3
21+
22+
- name: Set up Node.js
23+
uses: actions/setup-node@v3
24+
with:
25+
node-version: "${{ env.NODE }}"
26+
cache: npm
27+
28+
- name: Install npm dependencies
29+
run: npm ci
30+
31+
- name: Run dist
32+
run: npm run dist
33+
34+
- name: Run bundlewatch
35+
run: npm run bundlewatch
36+
env:
37+
BUNDLEWATCH_GITHUB_TOKEN: "${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}"
38+
CI_BRANCH_BASE: main

.github/workflows/codeql.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- dev
8+
- "!dependabot/**"
9+
pull_request:
10+
# The branches below must be a subset of the branches above
11+
branches:
12+
- main
13+
- v4-dev
14+
- "!dependabot/**"
15+
schedule:
16+
- cron: "0 2 * * 5"
17+
workflow_dispatch:
18+
19+
jobs:
20+
analyze:
21+
name: Analyze
22+
runs-on: ubuntu-latest
23+
permissions:
24+
actions: read
25+
contents: read
26+
security-events: write
27+
28+
steps:
29+
- name: Checkout repository
30+
uses: actions/checkout@v3
31+
32+
- name: Initialize CodeQL
33+
uses: github/codeql-action/init@v1
34+
with:
35+
languages: "javascript"
36+
37+
- name: Perform CodeQL Analysis
38+
uses: github/codeql-action/analyze@v1

.github/workflows/css.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: CSS
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- "dependabot/**"
7+
pull_request:
8+
workflow_dispatch:
9+
10+
env:
11+
FORCE_COLOR: 2
12+
NODE: 16
13+
14+
jobs:
15+
css:
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- name: Clone repository
20+
uses: actions/checkout@v3
21+
22+
- name: Set up Node.js
23+
uses: actions/setup-node@v3
24+
with:
25+
node-version: "${{ env.NODE }}"
26+
cache: npm
27+
28+
- name: Install npm dependencies
29+
run: npm ci
30+
31+
- name: Build CSS
32+
run: npm run css

.github/workflows/docs.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Docs
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- "dependabot/**"
7+
pull_request:
8+
workflow_dispatch:
9+
10+
env:
11+
FORCE_COLOR: 2
12+
NODE: 16
13+
14+
jobs:
15+
docs:
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- name: Clone repository
20+
uses: actions/checkout@v3
21+
22+
- name: Set up Node.js
23+
uses: actions/setup-node@v3
24+
with:
25+
node-version: "${{ env.NODE }}"
26+
cache: npm
27+
28+
- run: java -version
29+
30+
- name: Install npm dependencies
31+
run: npm ci
32+
33+
- name: Build docs
34+
run: npm run docs-build
35+
36+
- name: Validate HTML
37+
run: npm run docs-vnu
38+
39+
- name: Run linkinator
40+
uses: JustinBeckwith/linkinator-action@v1
41+
with:
42+
paths: _site
43+
recurse: true
44+
verbosity: error
45+
skip: "^(?!http://localhost)"

0 commit comments

Comments
 (0)