-
Notifications
You must be signed in to change notification settings - Fork 525
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: setup package versioning and publish (#7)
* chore: changing packages org to @metaplex-foundation * chore: adding prebublish scripts to all packages * chore: lerna version config * chore: lerna version + publish scripts * version: ignore test/markdown changes
- Loading branch information
Showing
60 changed files
with
108 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
{ | ||
"name": "@metaplex/mpl-auction", | ||
"name": "@metaplex-foundation/mpl-auction", | ||
"version": "0.0.0", | ||
"description": "MPL Token Metadata JavaScript API.", | ||
"main": "dist/src/mpl-auction.js", | ||
"types": "dist/src/mpl-auction.d.ts", | ||
"scripts": { | ||
"prepublish": "yarn build && yarn test", | ||
"build:docs": "typedoc", | ||
"build": "rimraf dist && tsc -p tsconfig.json", | ||
"test": "echo mpl-auction tests coming up ...", | ||
|
@@ -24,12 +25,12 @@ | |
"blockchain" | ||
], | ||
"homepage": "https://metaplex.com", | ||
"repository": "https://github.com/metaplex/metaplex-program-library.git", | ||
"repository": "https://github.com/metaplex-foundation/metaplex-program-library.git", | ||
"author": "Metaplex Maintainers <[email protected]>", | ||
"license": "MIT", | ||
"private": false, | ||
"dependencies": { | ||
"@metaplex/mpl-core": "0.0.0", | ||
"@metaplex-foundation/mpl-core": "0.0.0", | ||
"@solana/spl-token": "^0.1.8", | ||
"@solana/web3.js": "^1.31.0" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
{ | ||
"name": "@metaplex/mpl-core", | ||
"name": "@metaplex-foundation/mpl-core", | ||
"version": "0.0.0", | ||
"description": "MPL Core Tooling.", | ||
"main": "dist/src/mpl-core.js", | ||
"types": "dist/src/mpl-core.d.ts", | ||
"scripts": { | ||
"prepublish": "yarn build && yarn test", | ||
"build:docs": "typedoc", | ||
"build": "rimraf dist && tsc -p tsconfig.json", | ||
"test": "echo mpl-core tests coming up ...", | ||
|
@@ -24,7 +25,7 @@ | |
"blockchain" | ||
], | ||
"homepage": "https://metaplex.com", | ||
"repository": "https://github.com/metaplex/metaplex-program-library.git", | ||
"repository": "https://github.com/metaplex-foundation/metaplex-program-library.git", | ||
"author": "Metaplex Maintainers <[email protected]>", | ||
"license": "MIT", | ||
"private": false, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
{ | ||
"name": "@metaplex/mpl-metaplex", | ||
"name": "@metaplex-foundation/mpl-metaplex", | ||
"version": "0.0.0", | ||
"description": "MPL Token Metadata JavaScript API.", | ||
"main": "dist/src/mpl-metaplex.js", | ||
"types": "dist/src/mpl-metaplex.d.ts", | ||
"scripts": { | ||
"prepublish": "yarn build && yarn test", | ||
"build:docs": "typedoc", | ||
"build": "rimraf dist && tsc -p tsconfig.json", | ||
"test": "echo mpl-metaplex tests coming up ...", | ||
|
@@ -24,15 +25,15 @@ | |
"blockchain" | ||
], | ||
"homepage": "https://metaplex.com", | ||
"repository": "https://github.com/metaplex/metaplex-program-library.git", | ||
"repository": "https://github.com/metaplex-foundation/metaplex-program-library.git", | ||
"author": "Metaplex Maintainers <[email protected]>", | ||
"license": "MIT", | ||
"private": false, | ||
"dependencies": { | ||
"@metaplex/mpl-auction": "0.0.0", | ||
"@metaplex/mpl-core": "0.0.0", | ||
"@metaplex/mpl-token-metadata": "0.0.0", | ||
"@metaplex/mpl-token-vault": "0.0.0", | ||
"@metaplex-foundation/mpl-auction": "0.0.0", | ||
"@metaplex-foundation/mpl-core": "0.0.0", | ||
"@metaplex-foundation/mpl-token-metadata": "0.0.0", | ||
"@metaplex-foundation/mpl-token-vault": "0.0.0", | ||
"@solana/spl-token": "^0.1.8", | ||
"@solana/web3.js": "^1.31.0" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.