Skip to content

Commit 2cdead2

Browse files
committed
v0.2.0
Use bebbi-scripts for building
1 parent f0c4d0b commit 2cdead2

File tree

2 files changed

+31
-44
lines changed

2 files changed

+31
-44
lines changed

package.json

+28-44
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
11
{
22
"name": "@gigmade/react-hooks",
3-
"version": "0.1.8",
3+
"version": "0.2.0",
44
"description": "Collection of useful hooks",
5-
"main": "dist/index.js",
6-
"module": "dist/index.js",
5+
"main": "dist/cjs/index.js",
6+
"module": "dist/esm/index.js",
7+
"types": "dist/types/index.d.ts",
8+
"exports": {
9+
".": {
10+
"import": "./dist/esm/index.js",
11+
"require": "./dist/cjs/index.js",
12+
"default": "./dist/cjs/index.js",
13+
"development": "./src/index.ts",
14+
"production": "./dist/cjs/index.js"
15+
}
16+
},
717
"files": [
818
"dist"
919
],
10-
"babel": {
11-
"comments": false,
12-
"presets": [
13-
"@babel/preset-env",
14-
"@babel/preset-typescript",
15-
"@babel/preset-react"
16-
]
17-
},
18-
"watch": {
19-
"build": "src/*"
20-
},
2120
"lint-staged": {
2221
"*.{js,jsx,ts,tsx,md}": [
2322
"prettier --write"
@@ -32,55 +31,40 @@
3231
"semi": false,
3332
"singleQuote": true
3433
},
35-
"scripts": {
36-
"build": "cross-env rimraf dist && NODE_ENV=production babel --extensions '.js,.jsx,.ts,.tsx' --source-maps --out-dir dist src --copy-files \"**/*.json\"",
37-
"build:watch": "npm-watch",
38-
"test": "react-scripts test"
39-
},
4034
"eslintConfig": {
4135
"extends": "react-app",
4236
"rules": {
4337
"import/no-extraneous-dependencies": 2
4438
}
4539
},
46-
"browserslist": {
47-
"production": [
48-
">0.2%",
49-
"not dead",
50-
"not op_mini all"
51-
],
52-
"development": [
53-
"last 1 chrome version",
54-
"last 1 firefox version",
55-
"last 1 safari version"
56-
]
40+
"scripts": {
41+
"clean": "bebbi-scripts clean",
42+
"build": "bebbi-scripts build",
43+
"watch": "bebbi-scripts build --watch",
44+
"test": "bebbi-scripts test",
45+
"format": "bebbi-scripts format",
46+
"lint": "bebbi-scripts lint",
47+
"validate": "bebbi-scripts validate",
48+
"prepare": "husky install"
5749
},
5850
"devDependencies": {
59-
"@babel/cli": "^7.18.10",
60-
"@babel/core": "~7.19.1",
61-
"@babel/preset-env": "~7.19.1",
62-
"@babel/preset-react": "^7.18.6",
63-
"@babel/preset-typescript": "^7.18.6",
64-
"cross-env": "^7.0.3",
65-
"husky": "^4.3.7",
66-
"lint-staged": "^10.5.4",
51+
"bebbi-scripts": "workspace:^",
52+
"husky": "^8.0.0",
6753
"lodash": "4.17.21",
68-
"npm-watch": "^0.11.0",
6954
"prettier": "^2.8.1",
7055
"react": "^17.0.1",
71-
"rimraf": "^3.0.2",
7256
"use-debounce": "8.0.4"
7357
},
7458
"peerDependencies": {
7559
"lodash": "4.17.21",
7660
"react": "^17.0.1",
7761
"use-debounce": "8.0.4"
7862
},
63+
"dependencies": {
64+
"react-layout-effect": "^1.0.5"
65+
},
7966
"author": "gigmade ltd (https://www.gigmade.com)",
8067
"homepage": "",
8168
"license": "MIT",
82-
"repository": "",
83-
"dependencies": {
84-
"react-layout-effect": "^1.0.5"
85-
}
69+
"repository": ""
8670
}

tsconfig.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "bebbi-scripts/tsconfig.json"
3+
}

0 commit comments

Comments
 (0)