add access: public to published libraries' publishConfig

This commit is contained in:
Chris Trevino 2021-12-08 18:32:28 +00:00 коммит произвёл GitHub
Родитель 3b9f6cc923
Коммит 1e7eff082b
20 изменённых файлов: 40 добавлений и 19 удалений

Просмотреть файл

@ -17,7 +17,7 @@
"bundle:": "yarn workspaces foreach -pv run bundle",
"start:": "yarn workspaces foreach -piv run start",
"test:": "yarn workspaces foreach -piv run test",
"release:": "yarn workspaces foreach -piv run npm publish --tolerate-republish --access public",
"release:": "yarn workspaces foreach -piv npm publish --tolerate-republish",
"lint:": "essex lint",
"lint:fix": "essex lint --fix",
"unit:test": "jest --ci --coverage",

Просмотреть файл

@ -11,7 +11,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"author": "Chris Trevino (chtrevin@microsoft.com)",
"contributors": [

Просмотреть файл

@ -11,7 +11,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"author": "Chris Trevino (chtrevin@microsoft.com)",
"contributors": [

Просмотреть файл

@ -6,7 +6,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"author": "Chris Trevino (chtrevin@microsoft.com)",
"contributors": [

Просмотреть файл

@ -15,7 +15,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"license": "MIT",
"scripts": {

Просмотреть файл

@ -12,7 +12,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"author": "Chris Trevino (chtrevin@microsoft.com)",
"contributors": [

Просмотреть файл

@ -12,7 +12,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"author": "Chris Trevino (chtrevin@microsoft.com)",
"contributors": [

Просмотреть файл

@ -16,7 +16,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"license": "MIT",
"scripts": {

Просмотреть файл

@ -16,7 +16,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"license": "MIT",
"scripts": {

Просмотреть файл

@ -11,7 +11,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"author": "Chris Trevino (chtrevin@microsoft.com)",
"contributors": [

Просмотреть файл

@ -12,7 +12,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"author": "Chris Trevino (chtrevin@microsoft.com)",
"contributors": [

Просмотреть файл

@ -11,7 +11,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"author": "Chris Trevino (chtrevin@microsoft.com)",
"contributors": [

Просмотреть файл

@ -11,7 +11,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"license": "MIT",
"author": "Chris Trevino (chtrevin@microsoft.com)",

Просмотреть файл

@ -8,6 +8,9 @@
"url": "https://github.com/microsoft/graspologic-js.git",
"directory": "packages/lib-renderer-glsl"
},
"publishConfig": {
"access": "public"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",

Просмотреть файл

@ -11,7 +11,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"license": "MIT",
"author": "Chris Trevino (chtrevin@microsoft.com)",

Просмотреть файл

@ -7,7 +7,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"scripts": {
"build": "essex build",

Просмотреть файл

@ -12,7 +12,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"author": "Chris Trevino (chtrevin@microsoft.com)",
"contributors": [

Просмотреть файл

@ -12,7 +12,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"author": "Chris Trevino (chtrevin@microsoft.com)",
"contributors": [

Просмотреть файл

@ -12,7 +12,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"author": "Chris Trevino (chtrevin@microsoft.com)",
"contributors": [

Просмотреть файл

@ -12,7 +12,8 @@
"publishConfig": {
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts"
"types": "dist/types/index.d.ts",
"access": "public"
},
"author": "Chris Trevino (chtrevin@microsoft.com)",
"contributors": [