@meonode/mui 0.0.1-alpha.6 → 0.0.1-alpha.7

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 +1 -2
  2. package/package.json +8 -4
package/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # `@meonode/mui`
2
2
 
3
- [![NPM version](https://img.shields.io/npm/v/@meonode/mui.svg?style=flat)](https://www.npmjs.com/package/@meonode/mui)
4
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
3
+ [![NPM version](https://img.shields.io/npm/v/@meonode/mui.svg?style=flat)](https://www.npmjs.com/package/@meonode/mui) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
4
 
6
5
  > A lightweight wrapper around [@mui/material](https://mui.com/) components for use with [`@meonode/ui`](https://www.npmjs.com/package/@meonode/ui) and the BaseNode runtime.
7
6
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@meonode/mui",
3
3
  "description": "A lightweight wrapper around `@mui/material` components for use with `@meonode/ui` and the BaseNode runtime.",
4
- "version": "0.0.1-alpha.6",
4
+ "version": "0.0.1-alpha.7",
5
5
  "type": "module",
6
6
  "main": "./dist/main.js",
7
7
  "types": "./dist/main.d.ts",
@@ -21,7 +21,7 @@
21
21
  "scripts": {
22
22
  "lint": "eslint --fix",
23
23
  "build": "rm -rf ./dist && babel src --out-dir dist --extensions \".ts,.js\" && tsc && tsc-alias && copyfiles -u 1 \"src/**/*.json\" dist",
24
- "publish": "npm publish"
24
+ "publish": "yarn version prerelease --deferred && yarn version apply && yarn npm publish"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@babel/cli": "^7.0.0",
@@ -62,5 +62,9 @@
62
62
  "bugs": {
63
63
  "url": "https://github.com/l7aromeo/meonode-mui/issues"
64
64
  },
65
- "license": "MIT"
66
- }
65
+ "publishConfig": {
66
+ "access": "public"
67
+ },
68
+ "license": "MIT",
69
+ "stableVersion": "0.0.1-alpha.6"
70
+ }