Skip to content
This repository was archived by the owner on Feb 1, 2021. It is now read-only.

Commit 76ec7b3

Browse files
committed
feat: first stable version
1 parent 73be354 commit 76ec7b3

38 files changed

+7481
-0
lines changed

.babelrc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/preset-env",
5+
{
6+
"targets": {
7+
"node": "8"
8+
},
9+
"loose": true
10+
}
11+
]
12+
],
13+
"plugins": ["@babel/plugin-proposal-class-properties"]
14+
}

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
lib/

.eslintrc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"root": true,
3+
"extends": ["smooth", "smooth/project"]
4+
}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
lib/

.nvmrc

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

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
package.json
3+
CHANGELOG.md

.prettierrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all",
4+
"semi": false
5+
}

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: node_js
2+
3+
node_js:
4+
- 8
5+
- 10
6+
- 12
7+
8+
script:
9+
- yarn ci
10+
11+
notifications:
12+
email: false
13+
14+
cache:
15+
yarn: true
16+
directories:
17+
- 'node_modules'

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Bundle analyzer JS clients
2+
3+
This repository contains all JavaScript clients for [Bundle Analyzer](https://www.bundle-analyzer.com).
4+
5+
## Complete documentation
6+
7+
👉 [See full documentation](https://docs.bundle-analyzer.com/)

babel.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
const path = require('path')
2+
const fs = require('fs')
3+
4+
const config = fs.readFileSync(path.join(__dirname, '.babelrc'))
5+
6+
module.exports = JSON.parse(config)

0 commit comments

Comments
 (0)