Skip to content

Commit 18ccf48

Browse files
fix: add publish config to package.json
1 parent 799f39d commit 18ccf48

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

packages/toml/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,9 @@
3333
"devDependencies": {
3434
"@tree-sitter-grammars/tree-sitter-toml": "0.7.0",
3535
"@ast-grep/nursery": "workspace:*"
36+
},
37+
"publishConfig": {
38+
"access": "public",
39+
"registry": "https://registry.npmjs.org/"
3640
}
3741
}

scripts/nursery/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@ast-grep/nursery",
33
"version": "0.0.1",
4+
"private": false,
45
"description": "",
56
"main": "index.js",
67
"keywords": [],
@@ -9,5 +10,9 @@
910
"dependencies": {
1011
"tree-sitter-cli": "0.24.6",
1112
"@ast-grep/napi": "0.33.0"
13+
},
14+
"publishConfig": {
15+
"access": "public",
16+
"registry": "https://registry.npmjs.org/"
1217
}
1318
}

scripts/setup/package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{
22
"name": "@ast-grep/setup-lang",
33
"version": "0.0.1",
4+
"private": false,
45
"description": "",
56
"main": "index.js",
67
"keywords": [],
78
"author": "",
8-
"license": "ISC"
9+
"license": "ISC",
10+
"publishConfig": {
11+
"access": "public",
12+
"registry": "https://registry.npmjs.org/"
13+
}
914
}

0 commit comments

Comments
 (0)