Skip to content
This repository has been archived by the owner on Nov 4, 2021. It is now read-only.

Commit

Permalink
fix(packages): add npm publishConfig to all packages #62
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielrtakeda committed Apr 20, 2018
1 parent c4cecfb commit d8ba31b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
4 changes: 4 additions & 0 deletions packages/slate-editor-bold-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@
"name": "slate-editor-bold-plugin",
"version": "0.0.0",
"description": "SlateJS framework bold plugin",
"private": false,
"main": "dist/index.js",
"repository": "https://github.com/nossas/slate-editor",
"author": "Nossas <tech@nossas.org> (http://github.com/nossas)",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "babel src --out-dir dist --copy-files"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/slate-editor-components/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@slate-editor/components",
"version": "0.0.0",
"private": false,
"description": "Components for slate-editor, a complete rich text editor based on SlateJS framework",
"private": false,
"main": "dist/index.js",
"repository": "https://github.com/nossas/slate-editor",
"author": "Nossas <tech@nossas.org> (http://github.com/nossas)",
Expand Down
17 changes: 10 additions & 7 deletions packages/slate-editor-example/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
{
"name": "slate-editor-example",
"private": true,
"description": "A complete rich text editor based on SlateJS framework",
"version": "4.0.1",
"description": "A complete rich text editor based on SlateJS framework",
"private": true,
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/nossas/slate-editor.git"
},
"main": "lib/index.js",
"homepage": "https://github.com/nossas/slate-editor",
"author": "Nossas <tech@nossas.org> (http://github.com/nossas)",
"license": "GPL-3.0",
"publishConfig": {
"access": "restricted"
},
"scripts": {
"start": "PORT=7777 react-scripts start",
"test": "react-scripts test",
Expand Down Expand Up @@ -49,7 +55,6 @@
"slate": "0.31.3",
"slate-react": "0.10.17"
},
"license": "GPL-3.0",
"files": [
"LICENSE",
"README.md",
Expand All @@ -65,7 +70,5 @@
],
"bugs": {
"url": "https://github.com/nossas/slate-editor/issues"
},
"homepage": "https://github.com/nossas/slate-editor",
"author": "Nossas <tech@nossas.org> (http://github.com/nossas)"
}
}
2 changes: 1 addition & 1 deletion packages/slate-editor-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@slate-editor/utils",
"version": "0.0.0",
"private": false,
"description": "Utils for slate-editor, a complete rich text editor based on SlateJS framework",
"private": false,
"main": "dist/index.js",
"repository": "https://github.com/nossas/slate-editor",
"author": "Nossas <tech@nossas.org> (http://github.com/nossas)",
Expand Down

0 comments on commit d8ba31b

Please sign in to comment.