Skip to content

Commit

Permalink
Update packages for release
Browse files Browse the repository at this point in the history
  • Loading branch information
cdonohue committed Aug 18, 2019
1 parent a0d68f5 commit fb1bd22
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 30 deletions.
7 changes: 0 additions & 7 deletions packages/benefit-docs/gatsby-browser.js

This file was deleted.

9 changes: 0 additions & 9 deletions packages/benefit-docs/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,6 @@ module.exports = {
},
},
`gatsby-plugin-typescript`,
{
resolve: `gatsby-plugin-nprogress`,
options: {
// Setting a color is optional.
color: `tomato`,
// Disable the loading spinner.
showSpinner: true,
},
},
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
Expand Down
2 changes: 1 addition & 1 deletion packages/benefit-react/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ConfigConsumer, ConfigProvider } from "./ConfigContext"
import Box from "./Box"
import jsx from "./jsx"
// import css from "./css"

import {
baseStyles,
createBenefit,
Expand Down
27 changes: 22 additions & 5 deletions packages/benefit-react/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
{
"name": "benefit-react",
"version": "1.1.1",
"main": "index.js",
"module": "benefit-react.esm.js",
"main": "dist/index.js",
"module": "dist/benefit-react.esm.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/cdonohue/benefit.git",
"contributors": [
"Chad Donohue <[email protected]>",
"Eric Clemmons <[email protected]>"
],
"description": "Utility CSS library that provides a set of low-level, configurable, ready-to-use styles.",
"license": "MIT",
"keywords": [
"atomic",
"css",
"css-in-js",
"design",
"emotion",
"jsx",
"system",
"tailwind",
"tailwindcss",
"utility-classes"
],
"files": [
"dist"
],
"peerDependencies": {
"react": ">=16.3.0"
},
Expand All @@ -19,7 +36,7 @@
"prebuild": "rimraf dist",
"build": "node ../../scripts/build benefit-react",
"prerelease": "yarn build",
"postversion": "cp -rf package.json dist && cp -rf README.md dist && cp -rf LICENSE dist && cp benefit-logo.svg dist",
"release": "np --contents dist"
}
"release": "np"
},
"sideEffects": false
}
17 changes: 9 additions & 8 deletions packages/benefit/package.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,40 @@
{
"name": "benefit",
"version": "1.1.1",
"main": "index.js",
"module": "benefit.esm.js",
"types": "index.d.ts",
"main": "dist/index.js",
"module": "dist/benefit.esm.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/cdonohue/benefit.git",
"contributors": [
"Chad Donohue <[email protected]>",
"Eric Clemmons <[email protected]>"
],
"description": "5kB utility CSS library that is compatible with TailwindCSS",
"description": "Utility CSS library that provides a set of low-level, configurable, ready-to-use styles.",
"license": "MIT",
"keywords": [
"atomic",
"css",
"css-in-js",
"design",
"emotion",
"jsx",
"system",
"tailwind",
"tailwindcss",
"utility-classes"
],
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "node ../../scripts/build benefit",
"prerelease": "yarn build",
"postversion": "cp -rf package.json dist && cp -rf README.md dist && cp -rf LICENSE dist && cp benefit-logo.svg dist",
"release": "np --contents dist",
"release": "np",
"pretest": "yarn build",
"test": "jest"
},
"sideEffects": false,
"dependencies": {
"stylis": "^3.5.4"
"stylis": "3.5.4"
}
}

0 comments on commit fb1bd22

Please sign in to comment.