Skip to content

Commit

Permalink
feat: set default side-effects to false (#749)
Browse files Browse the repository at this point in the history
* feat: set default side-effects to false

* chore: release v2.3.4
  • Loading branch information
unix committed Feb 18, 2022
1 parent 6b1fc8d commit 8db79f6
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,16 @@
{
"name": "@geist-ui/core",
"version": "2.3.3",
"version": "2.3.4",
"main": "dist/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"unpkg": "dist/index.min.js",
"license": "MIT",
"description": "Modern and minimalist React UI library.",
"homepage": "https://geist-ui.dev",
"bugs": {
"url": "https://github.com/geist-org/geist-ui/issues/new/choose"
},
"repository": {
"type": "git",
"url": "https://github.com/geist-org/geist-ui"
},
"prettier": "@geist-ui/prettier-config",
"keywords": [
"geist",
"geist ui",
"components",
"react components",
"react ui"
],
"scripts": {
"dev": "yarn docs:collect && next dev",
"docs:start": "next start",
"docs:collect": "node scripts/collect-meta.js",
"docs:seeds": "node scripts/seeds/update.js",
"docs:effects": "node scripts/side-effects.js",
"docs:build": "yarn docs:effects && yarn docs:collect & yarn docs:seeds && next build",
"docs:build": "yarn docs:collect & yarn docs:seeds && next build",
"prettier": "prettier --write .",
"lint": "eslint \"{components,lib}/**/*.{js,ts,tsx}\"",
"test": "jest --config .jest.config.js --no-cache",
Expand All @@ -44,10 +25,29 @@
"build": "yarn build:clear && yarn build:rollup && yarn build:babel && yarn build:types && yarn build:after",
"release": "yarn build && yarn publish --access public --non-interactive"
},
"license": "MIT",
"description": "Modern and minimalist React UI library.",
"homepage": "https://geist-ui.dev",
"bugs": {
"url": "https://github.com/geist-org/geist-ui/issues/new/choose"
},
"repository": {
"type": "git",
"url": "https://github.com/geist-org/geist-ui"
},
"prettier": "@geist-ui/prettier-config",
"keywords": [
"geist",
"geist ui",
"components",
"react components",
"react ui"
],
"files": [
"/dist",
"/esm"
],
"sideEffects": false,
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
Expand Down

0 comments on commit 8db79f6

Please sign in to comment.