Skip to content

Commit a2df8a6

Browse files
committed
add base code for builds
1 parent 0cfd14c commit a2df8a6

12 files changed

+12456
-46
lines changed

.editorconfig

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# EditorConfig: http://EditorConfig.org
2+
# EditorConfig Properties: https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
3+
4+
# top-most EditorConfig file
5+
root = true
6+
7+
### defaults
8+
[*]
9+
charset = utf-8
10+
11+
# Unix-style newlines with
12+
end_of_line = lf
13+
14+
# 2 space indentation
15+
indent_size = 2
16+
indent_style = space
17+
18+
# remove any whitespace characters preceding newline characters
19+
trim_trailing_whitespace = true
20+
21+
# newline ending every file
22+
insert_final_newline = true
23+
24+
# Forces hard line wrapping after the amount of characters specified
25+
max_line_length = off
26+
27+
### custom for markdown
28+
[*.md]
29+
# do not remove any whitespace characters preceding newline characters
30+
trim_trailing_whitespace = false

.eslintignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
dist/
2+
types/
3+
docs/
4+
demo/
5+
.storybook/
6+
coverage/
7+
src/**/*.story.tsx
8+
src/**/*.test.ts

.eslintrc.js

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/* eslint-env node */
2+
module.exports = {
3+
env: {
4+
browser: true,
5+
es2021: true
6+
},
7+
extends: [
8+
'eslint:recommended',
9+
'plugin:react/recommended',
10+
'plugin:react-hooks/recommended',
11+
'prettier',
12+
'plugin:storybook/recommended'
13+
],
14+
parser: '@typescript-eslint/parser',
15+
parserOptions: {
16+
'ecmaFeatures': {
17+
'jsx': true
18+
},
19+
'ecmaVersion': 12,
20+
'sourceType': 'module'
21+
},
22+
plugins: [
23+
'react',
24+
'@typescript-eslint'
25+
],
26+
overrides: [{
27+
files: ['*.test.*'],
28+
env: {
29+
jest: true
30+
}
31+
}],
32+
'rules': {
33+
'no-unused-vars': [0],
34+
'indent': ['error', 2],
35+
'react/prop-types': [0],
36+
'linebreak-style': ['error', 'unix'],
37+
'quotes': ['error', 'single'],
38+
'semi': ['error', 'always']
39+
}
40+
};

.gitignore

+9-45
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ logs
44
npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
7-
lerna-debug.log*
8-
9-
# Diagnostic reports (https://nodejs.org/api/report.html)
10-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
7+
pkg/
8+
.rpt2_cache/
9+
dist/
10+
storybook-static/
1111

1212
# Runtime data
1313
pids
@@ -20,12 +20,11 @@ lib-cov
2020

2121
# Coverage directory used by tools like istanbul
2222
coverage
23-
*.lcov
2423

2524
# nyc test coverage
2625
.nyc_output
2726

28-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
27+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
2928
.grunt
3029

3130
# Bower dependency directory (https://bower.io/)
@@ -44,21 +43,12 @@ jspm_packages/
4443
# TypeScript v1 declaration files
4544
typings/
4645

47-
# TypeScript cache
48-
*.tsbuildinfo
49-
5046
# Optional npm cache directory
5147
.npm
5248

5349
# Optional eslint cache
5450
.eslintcache
5551

56-
# Microbundle cache
57-
.rpt2_cache/
58-
.rts2_cache_cjs/
59-
.rts2_cache_es/
60-
.rts2_cache_umd/
61-
6252
# Optional REPL history
6353
.node_repl_history
6454

@@ -70,35 +60,9 @@ typings/
7060

7161
# dotenv environment variables file
7262
.env
73-
.env.test
74-
75-
# parcel-bundler cache (https://parceljs.org/)
76-
.cache
7763

78-
# Next.js build output
64+
# next.js build output
7965
.next
80-
81-
# Nuxt.js build / generate output
82-
.nuxt
83-
dist
84-
85-
# Gatsby files
86-
.cache/
87-
# Comment in the public line in if your project uses Gatsby and *not* Next.js
88-
# https://nextjs.org/blog/next-9-1#public-directory-support
89-
# public
90-
91-
# vuepress build output
92-
.vuepress/dist
93-
94-
# Serverless directories
95-
.serverless/
96-
97-
# FuseBox cache
98-
.fusebox/
99-
100-
# DynamoDB Local files
101-
.dynamodb/
102-
103-
# TernJS port file
104-
.tern-port
66+
.DS_Store
67+
src/**/*.scss.d.ts
68+
src/**/*.css.d.ts

.prettierrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# https://github.com/prettier/prettier#configuration-file
2+
semi: true
3+
singleQuote: true
4+
overrides:
5+
- files: ".prettierrc"
6+
options:
7+
parser: json

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
# reablocks
1+
# reatree
2+
🌴 Tree Component for React

babel.config.js

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
module.exports = function(api) {
2+
api.cache.forever();
3+
4+
const presets = [
5+
['@babel/preset-env',
6+
{
7+
targets: {
8+
esmodules: true
9+
}
10+
}],
11+
'@babel/preset-react',
12+
['@babel/typescript', { isTSX: true, allExtensions: true }]
13+
];
14+
15+
const plugins = [
16+
'@babel/proposal-class-properties',
17+
'@babel/proposal-object-rest-spread',
18+
'@babel/plugin-syntax-dynamic-import',
19+
'@babel/plugin-proposal-nullish-coalescing-operator',
20+
'@babel/plugin-proposal-optional-chaining'
21+
];
22+
23+
return {
24+
presets,
25+
plugins
26+
};
27+
};

package.json

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
{
2+
"name": "reablocks",
3+
"version": "1.0.0",
4+
"description": "Low level component building blocks for React",
5+
"scripts": {
6+
"build": "rollup -c",
7+
"prettier": "prettier --loglevel warn --write 'src/**/*.{ts,tsx,js,jsx}'",
8+
"start": "start-storybook -p 9009",
9+
"build-storybook": "build-storybook",
10+
"lint": "eslint --ext js,ts,tsx",
11+
"lint:fix": "eslint --ext js,ts,tsx --fix src",
12+
"lint:prettier": "prettier --loglevel warn --write 'src/**/*.{ts,tsx,js,jsx}'"
13+
},
14+
"source": "src/index.ts",
15+
"main": "dist/index.cjs.js",
16+
"module": "dist/index.esm.js",
17+
"browser": "dist/index.js",
18+
"style": "dist/index.css",
19+
"typings": "dist/index.d.ts",
20+
"repository": {
21+
"type": "git",
22+
"url": "git+https://github.com/reaviz/reablocks.git"
23+
},
24+
"files": [
25+
"dist"
26+
],
27+
"keywords": [
28+
"react",
29+
"reactjs",
30+
"tree"
31+
],
32+
"license": "Apache-2.0",
33+
"bugs": {
34+
"url": "https://github.com/reaviz/reablocks/issues"
35+
},
36+
"homepage": "https://github.com/reaviz/reablocks#readme",
37+
"dependencies": {
38+
"classnames": "^2.3.1",
39+
"framer-motion": "^6.2.8"
40+
},
41+
"peerDependencies": {
42+
"react": ">=16",
43+
"react-dom": ">=16"
44+
},
45+
"devDependencies": {
46+
"@storybook/addon-essentials": "6.4.20",
47+
"@storybook/addon-storysource": "^6.4.20",
48+
"@storybook/addons": "6.4.20",
49+
"@storybook/react": "6.4.20",
50+
"@storybook/theming": "6.4.20",
51+
"@types/classnames": "^2.3.1",
52+
"@types/lodash": "^4.14.178",
53+
"@types/react": "^17.0.43",
54+
"@types/react-dom": "^17.0.14",
55+
"@typescript-eslint/eslint-plugin": "^4.32.0",
56+
"@typescript-eslint/parser": "^4.32.0",
57+
"autoprefixer": "^9",
58+
"chromatic": "^6.5.3",
59+
"eslint": "^7.32.0",
60+
"eslint-config-prettier": "^8.3.0",
61+
"eslint-plugin-react": "^7.28.0",
62+
"eslint-plugin-react-hooks": "^4.3.0",
63+
"eslint-plugin-storybook": "^0.5.7",
64+
"framer-motion": "^4.1.17",
65+
"husky": "^4.2.5",
66+
"lint-staged": "^10.5.4",
67+
"postcss-nested": "^4",
68+
"postcss-preset-env": "^6.7.0",
69+
"prettier": "^2.6.2",
70+
"react": "^18.0.0",
71+
"react-dom": "^18.0.0",
72+
"rollup": "^2.29.0",
73+
"rollup-plugin-commonjs": "10.1.0",
74+
"rollup-plugin-node-resolve": "5.2.0",
75+
"rollup-plugin-peer-deps-external": "2.2.3",
76+
"rollup-plugin-postcss": "3.1.3",
77+
"rollup-plugin-postcss-modules": "2.0.1",
78+
"rollup-plugin-sourcemaps": "0.6.3",
79+
"rollup-plugin-typescript2": "0.26.0",
80+
"storybook-css-modules-preset": "^1.1.1",
81+
"storybook-dark-mode": "^1.0.9",
82+
"typescript": "^4.1.3"
83+
},
84+
"prettier": {
85+
"semi": true,
86+
"singleQuote": true,
87+
"trailingComma": "none",
88+
"arrowParens": "avoid",
89+
"bracketSpacing": true,
90+
"jsxBracketSameLine": false,
91+
"printWidth": 80
92+
},
93+
"lint-staged": {
94+
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
95+
"prettier --write",
96+
"git add"
97+
]
98+
},
99+
"husky": {
100+
"hooks": {
101+
"pre-commit": "lint-staged"
102+
}
103+
}
104+
}

postcss.config.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
plugins: [
3+
require('postcss-nested'),
4+
require('postcss-preset-env')({ stage: 1 }),
5+
require('autoprefixer')
6+
]
7+
};

rollup.config.js

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
import resolve from 'rollup-plugin-node-resolve';
2+
import sourceMaps from 'rollup-plugin-sourcemaps';
3+
import typescript from 'rollup-plugin-typescript2';
4+
import external from 'rollup-plugin-peer-deps-external';
5+
import postcss from 'rollup-plugin-postcss-modules';
6+
import commonjs from 'rollup-plugin-commonjs';
7+
import pkg from './package.json';
8+
9+
export default [
10+
{
11+
input: pkg.source,
12+
output: [
13+
{
14+
file: pkg.browser,
15+
format: 'umd',
16+
name: 'reaselect'
17+
},
18+
{
19+
file: pkg.main,
20+
format: 'cjs',
21+
name: 'reaselect'
22+
},
23+
{
24+
file: pkg.module,
25+
format: 'esm'
26+
}
27+
],
28+
plugins: [
29+
external({
30+
includeDependencies: true
31+
}),
32+
postcss({
33+
// extract: true,
34+
modules: true,
35+
// writeDefinitions: true,
36+
plugins: [
37+
require('postcss-nested'),
38+
require('postcss-preset-env')({ stage: 1 }),
39+
require('autoprefixer')
40+
]
41+
}),
42+
typescript({
43+
clean: true,
44+
exclude: [
45+
'*.scss',
46+
'*.css',
47+
'*.test.js',
48+
'*.test.ts',
49+
'*.test.tsx',
50+
'*.d.ts',
51+
'**/*.d.ts',
52+
'**/*.story.tsx'
53+
]
54+
}),
55+
resolve(),
56+
commonjs(),
57+
sourceMaps()
58+
]
59+
}
60+
];

0 commit comments

Comments
 (0)