Skip to content

Commit 715461d

Browse files
authored
Publish 1.1 (#9)
1 parent 1470ac3 commit 715461d

39 files changed

+68
-41
lines changed

.eslintrc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"sourceType": "module",
1818
"project": [
1919
"tsconfig.json",
20-
"package/conev-core/tsconfig.json",
21-
"package/conev-json-source/tsconfig.json"
20+
"package/conev-sync-core/tsconfig.json",
21+
"package/conev-sync-json-source/tsconfig.json"
2222
]
2323
},
2424
"plugins": [

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ jobs:
3333
- name: Lint
3434
run: npm run lint
3535
- name: Build
36-
run: npm run all:build:production
36+
run: npm run build:production:all
3737
- name: Test
3838
run: npm run test

.npmignore

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
src
2-
script
3-
template
4-
.github
5-
package
1+
*
2+
!dist/*
3+
!dist/**/*

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
{
22
"name": "conev-sync",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "",
55
"main": "dist/index.js",
6+
"types": "dist/index.d.ts",
67
"scripts": {
78
"run": "node dist/index.js",
8-
"build:production": "cross-env NODE_ENV=production npm run build",
9+
"prepublish": "npm run build:production",
910
"build": "gulp",
10-
"neon": "neon",
11+
"build:production": "cross-env NODE_ENV=production npm run build",
12+
"build:all": "script/run-command-all-package.sh run build",
13+
"build:production:all": "script/run-command-all-package.sh run build:production",
1114
"lint": "eslint . --resolve-plugins-relative-to .",
1215
"lint:fix": "eslint --fix . --resolve-plugins-relative-to .",
1316
"lint:staged": "lint-staged",
1417
"test": "jest",
18+
"install:all": "script/run-command-all-package.sh install",
1519
"package:init": "script/init-package.sh package",
16-
"package:snpync": "script/sync-package.sh package",
1720
"package:neon:init": "script/init-neon-package.sh package",
18-
"tsc:init": "tsc --init",
19-
"eslint": "eslint",
20-
"all:install": "script/run-command-all-package.sh install",
21-
"all:build": "script/run-command-all-package.sh run build",
22-
"all:build:production": "script/run-command-all-package.sh run build:production",
23-
"prepublish": "npm run all:build:production"
21+
"package:version:patch": "script/run-command-all-package.sh version patch",
22+
"neon": "neon",
23+
"eslint": "eslint"
2424
},
2525
"repository": {
2626
"type": "git",
@@ -83,7 +83,7 @@
8383
"typescript": "^4.0.2"
8484
},
8585
"dependencies": {
86-
"conev-core": "file:package/conev-core",
87-
"conev-json-source": "file:package/conev-json-source"
86+
"conev-sync-core": "^1.0.3",
87+
"conev-sync-json-source": "^1.0.3"
8888
}
8989
}

package/conev-core/.npmignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

package/conev-json-source/.npmignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

package/conev-sync-core/.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*
2+
!dist/*
3+
!dist/**/*

0 commit comments

Comments
 (0)