forked from siranweb/activitypub-types
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fddc5cb
commit 005727b
Showing
4 changed files
with
75 additions
and
37 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Build | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout project | ||
uses: actions/checkout@v3 | ||
- name: Build and push | ||
uses: alexthemaster/action-build-typescript@master | ||
with: | ||
pushToBranch: true | ||
branch: "dist" | ||
githubToken: ${{ secrets.GITHUB_TOKEN }} |
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,37 +1,46 @@ | ||
{ | ||
"name": "activitypub-types", | ||
"version": "1.0.3", | ||
"description": "ActivityPub Typescript types", | ||
"main": "./dist/index.js", | ||
"scripts": { | ||
"tsc": "tsc -p ./tsconfig.json", | ||
"tsc:watch": "tsc -w -p ./tsconfig.json", | ||
"lint:fix": "eslint --fix ." | ||
}, | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^5.54.1", | ||
"@typescript-eslint/parser": "^5.54.1", | ||
"eslint": "^8.36.0", | ||
"typescript": "^4.9.5" | ||
}, | ||
"keywords": [ | ||
"activitypub", | ||
"typescript", | ||
"types", | ||
"models", | ||
"activitystreams" | ||
], | ||
"files": [ | ||
"dist", | ||
"LICENSE", | ||
"README.md", | ||
"package.json", | ||
"package-lock.json" | ||
], | ||
"author": "SiranWeb <[email protected]>", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/SiranWeb/activitypub-types" | ||
} | ||
} | ||
"name": "activitypub-types", | ||
"version": "1.0.4", | ||
"description": "ActivityPub Typescript types", | ||
"main": "./dist/index.js", | ||
"scripts": { | ||
"build": "tsc", | ||
"tsc:watch": "tsc -w", | ||
"lint:fix": "eslint --fix ." | ||
}, | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^5.54.1", | ||
"@typescript-eslint/parser": "^5.54.1", | ||
"eslint": "^8.36.0", | ||
"typescript": "^4.9.5" | ||
}, | ||
"keywords": [ | ||
"activitypub", | ||
"typescript", | ||
"types", | ||
"models", | ||
"activitystreams" | ||
], | ||
"files": [ | ||
"dist", | ||
"LICENSE", | ||
"README.md", | ||
"package.json", | ||
"package-lock.json" | ||
], | ||
"contributors": [ | ||
{ | ||
"name": "SiranWeb", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Spacebarchat", | ||
"url": "https://spacebar.chat" | ||
} | ||
], | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/spacebarchat/activitypub-types" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -11,5 +11,5 @@ | |
"skipLibCheck": true | ||
}, | ||
"include": ["src/**/*"], | ||
"exclude": ["node_modules"], | ||
"exclude": ["node_modules"] | ||
} |