nuudel-core 0.3.44 → 0.3.47
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.
- package/README.md +5 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -21,6 +21,11 @@ git fetch origin <branch>
|
|
|
21
21
|
|
|
22
22
|
git config --global push.default current
|
|
23
23
|
|
|
24
|
+
# npm
|
|
25
|
+
|
|
26
|
+
export NODE_AUTH_TOKEN=
|
|
27
|
+
npm login --registry=https://npm.pkg.github.com --scope=c0des1gn
|
|
28
|
+
npm login --registry=registry.npmjs.org
|
|
24
29
|
yarn
|
|
25
30
|
yarn build
|
|
26
31
|
npm publish --tag latest
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuudel-core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.47",
|
|
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",
|