Skip to content

Commit

Permalink
Added release dryrun scripts (#518)
Browse files Browse the repository at this point in the history
* chore: Added vardaccio

* fix: build packages before release

* fix: added release:dryrun scripts

* chore: fix example format

* fix: change release:dryrun command to depends release command
  • Loading branch information
kmkzt authored Jun 3, 2022
1 parent f89ddd8 commit 34e0d1e
Show file tree
Hide file tree
Showing 6 changed files with 1,345 additions and 82 deletions.
Empty file modified examples/docs/lib/example-svg.ts
100644 → 100755
Empty file.
Empty file modified examples/docs/lib/gtag.ts
100644 → 100755
Empty file.
1 change: 0 additions & 1 deletion examples/docs/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/// <reference types="next" />
/// <reference types="next/types/global" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
Expand Down
14 changes: 11 additions & 3 deletions examples/docs/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{
"extends": "../../tsconfig.json",
"include": ["next-env.d.ts", "modules.d.ts", "**/*.ts", "**/*.tsx"],
"include": [
"next-env.d.ts",
"modules.d.ts",
"**/*.ts",
"**/*.tsx"
],
"compilerOptions": {
"allowJs": true,
"noEmit": true,
Expand All @@ -11,7 +16,10 @@
"dom",
"dom.iterable",
"esnext"
]
],
"incremental": true
},
"exclude": ["node_modules"]
"exclude": [
"node_modules"
]
}
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"lint-fix": "eslint . --ext ts,tsx,js,jsx --fix",
"typecheck": "turbo run typecheck",
"versionup": "lerna version --no-push --no-git-tag-version --exact",
"release": "lerna publish from-package",
"release:debug": "yarn release --npm-tag=debug --no-push"
"release": "yarn build; lerna publish from-package",
"release:dryrun": "yarn build; lerna publish from-package --no-push --registry=http://localhost:4873/"
},
"devDependencies": {
"@babel/core": "7.16.12",
Expand Down Expand Up @@ -63,7 +63,8 @@
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-terser": "7.0.2",
"turbo": "1.2.9",
"typescript": "4.5.5"
"typescript": "4.5.5",
"verdaccio": "5.10.2"
},
"resolutions": {
"@typescript-eslint/typescript-estree/glob-parent": "5.1.2"
Expand Down
Loading

1 comment on commit 34e0d1e

@vercel
Copy link

@vercel vercel bot commented on 34e0d1e Jun 3, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

svg-drawing – ./

svg-drawing-git-master-kmkzt.vercel.app
svg-drawing-kmkzt.vercel.app
svg-drawing.vercel.app

Please sign in to comment.