Skip to content

Commit 90fa8e8

Browse files
committed
update package.json
1 parent c814b07 commit 90fa8e8

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

gulpfile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export class Gulpfile {
114114
packagePublish() {
115115
return gulp.src("package.json", { read: false })
116116
.pipe(shell([
117-
"cd ./build/package && npm publish"
117+
"cd ./build/package && npm publish --access public"
118118
]));
119119
}
120120

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "typeorm",
2+
"name": "@twotwentythree/typeorm",
33
"private": true,
44
"version": "0.3.5",
5-
"description": "Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.",
5+
"description": "twotwentythree fork",
66
"license": "MIT",
77
"readmeFilename": "README.md",
88
"author": {
@@ -59,10 +59,10 @@
5959
},
6060
"repository": {
6161
"type": "git",
62-
"url": "https://github.com/typeorm/typeorm.git"
62+
"url": "https://github.com/twotwentythree/typeorm.git"
6363
},
6464
"bugs": {
65-
"url": "https://github.com/typeorm/typeorm/issues"
65+
"url": "https://github.com/twotwentythree/typeorm/issues"
6666
},
6767
"tags": [
6868
"orm",
@@ -230,7 +230,8 @@
230230
"pack": "gulp pack",
231231
"lint": "prettier --check \"./src/**/*.ts\" \"./test/**/*.ts\" \"./sample/**/*.ts\"",
232232
"format": "prettier --write \"./src/**/*.ts\" \"./test/**/*.ts\" \"./sample/**/*.ts\"",
233-
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2"
233+
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2",
234+
"publish": "gulp publish"
234235
},
235236
"bin": {
236237
"typeorm": "./cli.js",

0 commit comments

Comments
 (0)