chore: review private property in package.json files (#244)
Remove versioning for private packages are they are not supposed to be consumed outside the project. Explicitly mark public packages.development
parent
e175937f02
commit
3758ac4dce
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "maxgraph",
|
||||
"license": "Apache-2.0",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"description": "maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
|
||||
"homepage": "https://github.com/maxGraph/maxGraph",
|
||||
"repository": {
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"name": "@maxgraph/core",
|
||||
"license": "Apache-2.0",
|
||||
"private": false,
|
||||
"version": "0.4.0",
|
||||
"description": "maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
|
||||
"keywords": [
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"name": "@maxgraph/html",
|
||||
"license": "Apache-2.0",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"description": "Storybook stories",
|
||||
"main": "index.js",
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
"name": "@maxgraph/ts-example-built-with-vite",
|
||||
"license": "Apache-2.0",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "tsc --version && tsc && vite build --base ./",
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"name": "@maxgraph/ts-support",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"test": "tsc --version && tsc"
|
||||
|
|
Loading…
Reference in New Issue