@heartlandone/vega-react 1.3.0 → 1.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -15
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1,16 +1,4 @@
1
- # stencil-ds-react-template
1
+ # Vega React
2
+ > React specific wrapper for [@heartlandone/vega](https://www.npmjs.com/package/@heartlandone/vega)
2
3
 
3
- This is an example repo of building plugins.
4
-
5
- ## Step 1.
6
-
7
- - Update the `package.json` to have the correct package name for this repo.
8
- - Replace `component-library` under `dependencies` with your core stencil package name.
9
-
10
- ## Step 2.
11
-
12
- - Build your core stencil package.
13
-
14
- ## Step 3.
15
-
16
- - Run build on this package.
4
+ For installation guidance, please refer to https://vega.hlprd.com/guides/getting-started-developers#react
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@heartlandone/vega-react",
3
3
  "sideEffects": false,
4
- "version": "1.3.0",
4
+ "version": "1.3.3",
5
5
  "description": "React specific wrapper for @heartlandone/vega",
6
6
  "scripts": {
7
7
  "build": "npm run clean && npm run compile",
@@ -11,9 +11,9 @@
11
11
  "rollup": "rollup -c",
12
12
  "release": "npm run build",
13
13
  "version": "npm run release",
14
- "publish:patch": "npm version patch -m \"Publish $npm_package_name with version v%s.\" --tag-version-prefix=${npm_package_name}_v && git push --follow-tags && npm publish",
15
- "publish:minor": "npm version minor -m \"Publish $npm_package_name with version v%s.\" --tag-version-prefix=${npm_package_name}_v && git push --follow-tags && npm publish",
16
- "publish:major": "npm version major -m \"Publish $npm_package_name with version v%s.\" --tag-version-prefix=${npm_package_name}_v && git push --follow-tags && npm publish"
14
+ "publish:patch": "node ../scripts/publish-version.js patch",
15
+ "publish:minor": "node ../scripts/publish-version.js minor",
16
+ "publish:major": "node ../scripts/publish-version.js major"
17
17
  },
18
18
  "main": "./dist/index.js",
19
19
  "module": "./dist/index.js",
@@ -37,7 +37,7 @@
37
37
  "typescript": "^4.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@heartlandone/vega": "*"
40
+ "@heartlandone/vega": "1.3.3"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "react": ">=16.7.0",
@@ -51,4 +51,4 @@
51
51
  "dist"
52
52
  ]
53
53
  }
54
- }
54
+ }