Skip to content

Commit bbbc303

Browse files
committed
1.1.0
1 parent 622d3be commit bbbc303

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ jobs:
6363
arch: ia32
6464
- os: windows-2022
6565
arch: arm64
66-
- os: macos-13
66+
- os: macos-14
6767
arch: x64
68-
- os: macos-13
68+
- os: macos-14
6969
arch: arm64
70-
- os: macos-13
70+
- os: macos-14
7171
target: iphone
7272
arch: arm64
73-
- os: macos-13
73+
- os: macos-14
7474
target: iphone
7575
arch: x64
7676

@@ -93,8 +93,6 @@ jobs:
9393
set -ev
9494
bash build -j2 ${BUILD_ARCH} ${BUILD_TARGET} ${BUILD_TYPE}
9595
if [[ "$BUILD_TAG" != "" ]]; then
96-
mkdir addon
97-
cp bin/${BUILD_OS}_${BUILD_ARCH}_${BUILD_TYPE}/${BUILD_NAME}.node addon/
9896
tar -zcf ${BUILD_NAME}-${BUILD_TARGET}-${BUILD_ARCH}-${BUILD_TYPE}.tar.gz addon/${BUILD_NAME}.node
9997
fi
10098

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/out
22
/bin
3+
/addon
34
/temp/*
4-
/.vscode/launch.json
5+
/.vscode/launch.json

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
.vscode
88
fib-addon
9+
addon
910
build*
1011
CMakeLists.txt
1112
tools

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
{
22
"name": "fib-jieba",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "fibjs binding for jieba.",
55
"main": "index.js",
66
"scripts": {
77
"install": "node-pre-gyp install"
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/fibjs/fib-jieba.git"
11+
"url": "git+https://github.com/querycatai/fib-jieba.git"
1212
},
1313
"keywords": [
1414
"jieba",
1515
"fib-jieba"
1616
],
1717
"author": "lion",
1818
"license": "MIT",
19-
"homepage": "https://github.com/fibjs/fib-jieba",
19+
"homepage": "https://github.com/querycatai/fib-jieba",
2020
"binary": {
2121
"module_name": "fib-jieba",
2222
"module_path": "./addon",
2323
"remote_path": "{version}",
2424
"package_name": "{module_name}-{platform}-{arch}-release.tar.gz",
25-
"host": "https://github.com/fibjs/fib-jieba/releases/download/"
25+
"host": "https://github.com/querycatai/fib-jieba/releases/download/"
2626
},
2727
"dependencies": {
2828
"@mapbox/node-pre-gyp": "^1.0.11"

0 commit comments

Comments
 (0)