Skip to content

Commit 3fc58b7

Browse files
committed
chore: auto publish
1 parent 665a12a commit 3fc58b7

File tree

5 files changed

+72
-4
lines changed

5 files changed

+72
-4
lines changed

.github/workflows/publish.yml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: NPM Publish
2+
3+
on:
4+
release:
5+
# This specifies that the build will be triggered when we publish a release
6+
types:
7+
- published
8+
9+
jobs:
10+
publish:
11+
name: Publish to NPM & Create Pull Request of Version Update
12+
# Run on latest version of ubuntu
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
with:
18+
# "ref" specifies the branch to check out.
19+
# "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted
20+
ref: ${{ github.event.release.target_commitish }}
21+
# install Node.js
22+
- name: Use Node.js 16
23+
uses: actions/setup-node@v1
24+
with:
25+
node-version: 16
26+
# Specifies the registry, this field is required!
27+
registry-url: https://registry.npmjs.org/
28+
# clean install of your projects' deps. We use "npm ci" to avoid package lock changes
29+
- run: npm install
30+
# set up git since we will later push to the repo
31+
- run: git config --global user.name "hyj1991"
32+
- run: git config --global user.email "[email protected]"
33+
# upgrade npm version in package.json to the tag used in the release.
34+
# upgrade npm version in package.json to the tag used in the release.
35+
- run: npm version ${{ github.event.release.tag_name }}
36+
# build the project
37+
- run: npm run build
38+
# run tests just in case
39+
- run: npm test
40+
# publish to NPM -> there is one caveat, continue reading for the fix
41+
- run: npm publish
42+
if: "!github.event.release.prerelease"
43+
env:
44+
# Use a token to publish to NPM. See below for how to set it up
45+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
46+
- run: npm publish --tag beta
47+
if: "github.event.release.prerelease"
48+
env:
49+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
50+
- name: Create Pull Request
51+
uses: peter-evans/create-pull-request@v4
52+
with:
53+
title: "Release ${{ github.event.release.tag_name }}"

package.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
{
22
"name": "@xprofiler/injection",
3-
"version": "0.0.0",
3+
"version": "0.0.2",
44
"description": "an ioc implemention for xprofiler",
55
"main": "dist/index.js",
6+
"types": "dist/index.d.ts",
7+
"files": [
8+
"dist"
9+
],
610
"scripts": {
711
"lint": "eslint . --ext .ts",
812
"lint:fix": "eslint --fix . --ext .ts",
9-
"build": "rm -rf dist && tsc",
13+
"tsc": "rm -rf dist && tsc -p ./tsconfig.json",
14+
"build": "rm -rf dist && tsc -p ./tsconfig.build.json",
1015
"test": "jest --coverage --config ./jest.config.js",
1116
"codecov": "codecov || echo 'warning: ignoring codecov failure'",
1217
"ci": "npm run lint && npm run test && npm run codecov"

test/decorator/injectable.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe("injectable.test.js", () => {
2626
it("class DD metadata shoule be ok", () => {
2727
const metadata = getClassConstructorMetadata(Injectable.DD);
2828
assert(metadata.id === Injectable.DD);
29-
assert(metadata.scope === ScopeType.EXECUTION);
29+
assert(metadata.scope === ScopeType.TRANSIENT);
3030
});
3131

3232
it("class EE not have metadata", () => {

test/fixtures/decorator/injectable.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export class BB { }
99
@Injectable({ id: "cc" })
1010
export class CC { }
1111

12-
@Injectable({ scope: ScopeType.EXECUTION })
12+
@Injectable({ scope: ScopeType.TRANSIENT })
1313
export class DD { }
1414

1515
export class EE { }

tsconfig.build.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"rootDir": "./src",
5+
},
6+
"exclude": [
7+
"test",
8+
"dist"
9+
]
10+
}

0 commit comments

Comments
 (0)