Skip to content

Commit b2d38de

Browse files
committed
First version
0 parents  commit b2d38de

File tree

6 files changed

+28
-0
lines changed

6 files changed

+28
-0
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: 'npm'
4+
directory: '/'
5+
schedule:
6+
interval: 'daily'

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
development: ['last 1 version', 'not IE 11', 'not dead'],
3+
production: ['> 0.5%', 'last 3 versions', 'not IE 11', 'not dead'],
4+
}

package.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "@remato/browserslist-config",
3+
"version": "1.0.0",
4+
"license": "MIT",
5+
"devDependencies": {
6+
"@remato/prettier-config": "^1.0.0"
7+
}
8+
}

prettier.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require("@remato/prettier-config");

yarn.lock

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
"@remato/prettier-config@^1.0.0":
6+
version "1.0.0"
7+
resolved "https://registry.yarnpkg.com/@remato/prettier-config/-/prettier-config-1.0.0.tgz#671a1057ea9613ed3fbfe6e8ef51869a13e41de3"
8+
integrity sha512-b6E3LmgaMlaGS2EfZXsncifqcLWffmki4tel+oTEpNA+e0X4AD4OLw0yke0El3YriBQaZu9TPKb7eEEbGvxwZg==

0 commit comments

Comments
 (0)