Skip to content

Commit 306e26a

Browse files
add: missing configs
1 parent a7c903f commit 306e26a

File tree

22,306 files changed

+71
-2351207
lines changed

Some content is hidden

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

22,306 files changed

+71
-2351207
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.github/CONTRIBUTING.md

Lines changed: 21 additions & 0 deletions

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [hakimel]

.github/workflows/js.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: tests
2+
3+
on:
4+
- push
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
node-version:
16+
- 18
17+
- 20
18+
19+
steps:
20+
- uses: actions/checkout@v4
21+
22+
- name: Use Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v4
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
27+
- run: npm install
28+
- run: npm run build --if-present
29+
- run: npm test
30+
env:
31+
CI: true

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.idea/
2+
*.iml
3+
*.iws
4+
*.eml
5+
out/
6+
.DS_Store
7+
.svn
8+
log/*.log
9+
tmp/**
10+
node_modules/
11+
.sass-cache

.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/test
2+
/examples
3+
.github
4+
.sass-cache
5+
gulpfile.js

README.md

Lines changed: 2 additions & 1 deletion

node_modules/.DS_Store

-90 KB
Binary file not shown.

node_modules/.bin/acorn

Lines changed: 0 additions & 1 deletion
This file was deleted.

node_modules/.bin/autoprefixer

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)