chore: enable NPM provenance
This commit is contained in:
parent
ff89dd4f86
commit
db656c2310
10 changed files with 29 additions and 8 deletions
12
.changeset/wicked-experts-greet.md
Normal file
12
.changeset/wicked-experts-greet.md
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
---
|
||||||
|
'@emigrate/reporter-pino': patch
|
||||||
|
'@emigrate/plugin-tools': patch
|
||||||
|
'@emigrate/storage-fs': patch
|
||||||
|
'@emigrate/postgres': patch
|
||||||
|
'@emigrate/tsconfig': patch
|
||||||
|
'@emigrate/mysql': patch
|
||||||
|
'@emigrate/types': patch
|
||||||
|
'@emigrate/cli': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Enable NPM provenance
|
||||||
1
.github/workflows/release.yaml
vendored
1
.github/workflows/release.yaml
vendored
|
|
@ -16,6 +16,7 @@ jobs:
|
||||||
packages: write
|
packages: write
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
actions: read
|
actions: read
|
||||||
|
id-token: write
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
"name": "@emigrate/cli",
|
"name": "@emigrate/cli",
|
||||||
"version": "0.17.0",
|
"version": "0.17.0",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public",
|
||||||
|
"provenance": true
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
"name": "@emigrate/mysql",
|
"name": "@emigrate/mysql",
|
||||||
"version": "0.2.5",
|
"version": "0.2.5",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public",
|
||||||
|
"provenance": true
|
||||||
},
|
},
|
||||||
"description": "A MySQL plugin for Emigrate. Uses a MySQL database for storing migration history. Can load and generate .sql migration files.",
|
"description": "A MySQL plugin for Emigrate. Uses a MySQL database for storing migration history. Can load and generate .sql migration files.",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
"name": "@emigrate/plugin-tools",
|
"name": "@emigrate/plugin-tools",
|
||||||
"version": "0.9.5",
|
"version": "0.9.5",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public",
|
||||||
|
"provenance": true
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
"name": "@emigrate/postgres",
|
"name": "@emigrate/postgres",
|
||||||
"version": "0.2.5",
|
"version": "0.2.5",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public",
|
||||||
|
"provenance": true
|
||||||
},
|
},
|
||||||
"description": "A PostgreSQL plugin for Emigrate. Uses a PostgreSQL database for storing migration history. Can load and generate .sql migration files.",
|
"description": "A PostgreSQL plugin for Emigrate. Uses a PostgreSQL database for storing migration history. Can load and generate .sql migration files.",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
"name": "@emigrate/reporter-pino",
|
"name": "@emigrate/reporter-pino",
|
||||||
"version": "0.6.0",
|
"version": "0.6.0",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public",
|
||||||
|
"provenance": true
|
||||||
},
|
},
|
||||||
"description": "A Pino reporter for Emigrate for logging the migration process.",
|
"description": "A Pino reporter for Emigrate for logging the migration process.",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
"name": "@emigrate/storage-fs",
|
"name": "@emigrate/storage-fs",
|
||||||
"version": "0.4.5",
|
"version": "0.4.5",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public",
|
||||||
|
"provenance": true
|
||||||
},
|
},
|
||||||
"description": "A storage plugin for Emigrate for storing the migration history in a file",
|
"description": "A storage plugin for Emigrate for storing the migration history in a file",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
"name": "@emigrate/tsconfig",
|
"name": "@emigrate/tsconfig",
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public",
|
||||||
|
"provenance": true
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"base.json",
|
"base.json",
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
"name": "@emigrate/types",
|
"name": "@emigrate/types",
|
||||||
"version": "0.12.0",
|
"version": "0.12.0",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public",
|
||||||
|
"provenance": true
|
||||||
},
|
},
|
||||||
"description": "Common Emigrate TypeScript types to ease plugin development.",
|
"description": "Common Emigrate TypeScript types to ease plugin development.",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue