nuudel-core 0.3.44 → 0.3.46

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 +4 -0
  2. package/package.json +5 -1
package/README.md CHANGED
@@ -21,6 +21,10 @@ git fetch origin <branch>
21
21
 
22
22
  git config --global push.default current
23
23
 
24
+ # npm
25
+
26
+ npm login --registry=https://npm.pkg.github.com --scope=c0des1gn
27
+ npm login --registry=registry.npmjs.org
24
28
  yarn
25
29
  yarn build
26
30
  npm publish --tag latest
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuudel-core",
3
- "version": "0.3.44",
3
+ "version": "0.3.46",
4
4
  "description": "Web components for react with material UI",
5
5
  "main": "build/main/index.js",
6
6
  "typings": "build/main/index.d.ts",
@@ -15,10 +15,14 @@
15
15
  "url": "https://github.com/c0des1gn/nuudel-core/issues"
16
16
  },
17
17
  "keywords": [
18
+ "nuudel-core",
18
19
  "react",
19
20
  "reactjs",
20
21
  "graphql"
21
22
  ],
23
+ "publishConfig": {
24
+ "registry": "https://registry.npmjs.org"
25
+ },
22
26
  "scripts": {
23
27
  "build": "run-p build:*",
24
28
  "build:main": "tsc -p tsconfig.json",