Skip to content

Commit

Permalink
chore: added multiple package playground
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnCampionJr committed Nov 22, 2023
1 parent 68fb4d1 commit 8645e8f
Show file tree
Hide file tree
Showing 14 changed files with 2,891 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ node_modules
.env
dist/
.idea
.playground/**/[Bb]in/
.playground/**/[Oo]bj/
.playground/artifacts/
.playground*/**/[Bb]in/
.playground*/**/[Oo]bj/
.playground*/artifacts/
test/**/[Bb]in/
test/**/[Oo]bj/
26 changes: 26 additions & 0 deletions .playground-multiple/.release-it.cjs
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,
},
}
1 change: 1 addition & 0 deletions .playground-multiple/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NuGet requires a license file
1 change: 1 addition & 0 deletions .playground-multiple/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NuGet Required README
41 changes: 41 additions & 0 deletions .playground-multiple/package.json
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"
}
}
Loading

0 comments on commit 8645e8f

Please sign in to comment.