Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"presets": [
"@babel/preset-env",
"@babel/preset-react"]
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ built
dist
public

# parcel build cache
.cache/

# debug files
npm-debug.log*
yarn-debug.log*
Expand Down
6 changes: 6 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# npm config for publishing

registry = https://registry.npmjs.org

message = "publish(npm): v%s [skip ci]"
preid = "alpha"
19 changes: 14 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@
"name": "@helix-design-system/helix-react",
"version": "1.0.0-alpha.1",
"description": "React components to wrap HelixUI custom elements",
"module": "src/index.mjs",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
Comment on lines +5 to +6
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nicko-winner, I made one slight change here so that it's similar to HelixUI.

"unpkg": "dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"install:clean": "rm -rf node_modules && yarn install",
"build": "parcel build src/index.mjs",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "yarn storybook",
"docs": "build-storybook -c .storybook -o public",
Expand All @@ -16,25 +22,27 @@
"type": "git",
"url": "git+https://github.com/HelixDesignSystem/helix-react.git"
},
"author": "Ryan A. Johnson <rhino.citguy@gmail.com>",
"author": "Helix Design System Helix-React Team",
"contributors": [
"Mike Mangialardi",
"James Thompson",
"Cathy Siller",
"Nicko Winner-Arroyo"
"Nicko Winner-Arroyo",
"Ryan A. Johnson"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/HelixDesignSystem/helix-react/issues"
},
"homepage": "https://helix-react.netlify.com/",
"homepage": "https://helix-react.netlify.app",
"publishConfig": {
"access": "public",
"scope": "@helix-design-system"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.10.4",
"@babel/runtime-corejs2": "^7.9.0",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-centered": "^5.3.18",
Expand All @@ -45,8 +53,9 @@
"@storybook/addons": "^5.3.17",
"@storybook/react": "^5.3.17",
"babel-loader": "^8.1.0",
"helix-ui": "^0.19.0",
"helix-ui": "^0.23.0",
"husky": "^4.2.5",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.4",
"prop-types": "^15.7.2",
"react": "^16.6.3",
Expand Down
Loading