Skip to content

Commit

Permalink
Preps v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlplusb committed Sep 22, 2017
1 parent 1e5fe57 commit 829f834
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 29 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
> ___NOTE:___ This is an beta release of the library. I am using it in production myself however it hasn't been used for a considerable length of time. There _may_ be API changes, however, I expect them to be absolutely minimal.
# react-async-component 📬

Resolve components asynchronously, with support for code splitting and advanced server side rendering use cases.
Expand Down
38 changes: 11 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
{
"name": "react-async-component",
"version": "1.0.0-beta.3",
"description": "Create Components that resolve asynchronously, with support for server side rendering and code splitting.",
"version": "1.0.0",
"description":
"Create Components that resolve asynchronously, with support for server side rendering and code splitting.",
"license": "MIT",
"main": "commonjs/index.js",
"files": [
"*.js",
"*.md",
"umd",
"commonjs"
],
"files": ["*.js", "*.md", "umd", "commonjs"],
"typings": "./index.d.ts",
"repository": {
"type": "git",
Expand All @@ -28,7 +24,8 @@
"precommit": "lint-staged && npm run test",
"build": "babel-node ./tools/scripts/build.js",
"check": "npm run lint && npm run test",
"clean": "rimraf ./commonjs && rimraf ./umd && rimraf ./coverage && rimraf ./flow-coverage && rimraf ./umd",
"clean":
"rimraf ./commonjs && rimraf ./umd && rimraf ./coverage && rimraf ./flow-coverage && rimraf ./umd",
"lint": "eslint src,tools",
"prepublish": "npm run build",
"test": "jest",
Expand Down Expand Up @@ -85,21 +82,14 @@
"webpack-hot-middleware": "^2.19.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"collectCoverageFrom": ["src/**/*.{js,jsx}"],
"snapshotSerializers": ["<rootDir>/node_modules/enzyme-to-json/serializer"],
"testPathIgnorePatterns": [
"<rootDir>/(commonjs|coverage|flow-typed|node_modules|tools|umd)/"
]
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
"src/**/*.js": ["prettier --write", "git add"]
},
"eslintConfig": {
"root": true,
Expand All @@ -113,10 +103,7 @@
"extends": "airbnb",
"rules": {
"array-callback-return": 0,
"arrow-parens": [
"error",
"as-needed"
],
"arrow-parens": ["error", "as-needed"],
"camelcase": 0,
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": 0,
Expand All @@ -127,10 +114,7 @@
"no-nested-ternary": 0,
"react/no-array-index-key": 0,
"react/react-in-jsx-scope": 0,
"semi": [
2,
"never"
],
"semi": [2, "never"],
"react/forbid-prop-types": 0,
"react/jsx-filename-extension": 0,
"react/sort-comp": 0
Expand Down

0 comments on commit 829f834

Please sign in to comment.