Skip to content

Commit

Permalink
chore(build): add relaserc to npmignore; sort package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ricokahler committed Jan 30, 2021
1 parent c493ba7 commit b4462bf
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ babel.config.json
jest.config.js
renovate.json
tsconfig.json
.releaserc.json
25 changes: 12 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,20 @@
"name": "Rico Kahler",
"email": "[email protected]"
},
"sideEffects": false,
"exports": "./dist/index.modern.js",
"main": "./dist/index.ts",
"unpkg": "./dist/index.umd.js",
"module": "./dist/index.module.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint src --ext .ts,.tsx,.js,.jsx",
"test": "jest",
"website": "node ./scripts/website.js",
"build": "microbundle",
"dev": "microbundle watch",
"prepare": "npm run build"
"lint": "eslint src --ext .ts,.tsx,.js,.jsx",
"prepare": "npm run build",
"test": "jest",
"website": "node ./scripts/website.js"
},
"devDependencies": {
"@babel/core": "7.12.10",
Expand Down Expand Up @@ -59,13 +66,5 @@
"semantic-release": "17.3.7",
"showdown": "1.9.1",
"typescript": "4.1.3"
},
"sideEffects": false,
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"main": "./dist/index.ts",
"exports": "./dist/index.modern.js",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"dependencies": {}
}
}

0 comments on commit b4462bf

Please sign in to comment.