-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: added multiple package playground
- Loading branch information
1 parent
68fb4d1
commit 8645e8f
Showing
14 changed files
with
2,891 additions
and
3 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
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* eslint-disable no-template-curly-in-string */ | ||
module.exports = { | ||
plugins: { | ||
'../dist/index.mjs': { | ||
nugetFeedUrl: '', | ||
nugetApiKey: '', | ||
publish: true, | ||
versionFile: './src/Directory.Build.props', | ||
csprojFile: './src/ClassLibraries.sln', | ||
}, | ||
}, | ||
git: { | ||
commit: false, | ||
tag: false, | ||
requireCleanWorkingDir: false, | ||
push: false, | ||
tagName: 'v${version}', | ||
commitMessage: 'chore(release): v${version}', | ||
}, | ||
github: { | ||
release: false, | ||
}, | ||
npm: { | ||
publish: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NuGet requires a license file |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
NuGet Required README |
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"name": "@jcamp/release-it-test-playground", | ||
"version": "2.9.41", | ||
"private": true, | ||
"description": "", | ||
"author": "", | ||
"license": "MIT", | ||
"repository": "https://github.com/JohnCampionJr/release-it-test", | ||
"keywords": [], | ||
"sideEffects": false, | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs" | ||
}, | ||
"./dotnet": { | ||
"types": "./dist/dotnet.d.ts", | ||
"import": "./dist/dotnet.mjs", | ||
"require": "./dist/dotnet.cjs" | ||
} | ||
}, | ||
"main": "./dist/index.cjs", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"build": "unbuild", | ||
"stub": "unbuild --stub", | ||
"test": "vitest run", | ||
"release": "release-it", | ||
"pre": "release-it minor --preRelease=beta", | ||
"cl": "changelogen" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"release-it": "^17.0.0" | ||
} | ||
} |
Oops, something went wrong.