Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
jitsedesmet committed Jan 15, 2025
1 parent c8d7892 commit 3a4c48f
Show file tree
Hide file tree
Showing 11 changed files with 41 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ engines/*/spec/**/*.cjs
engines/*/spec/**/*.js
engines/*/spec/**/*.js.map
engines/*/spec/**/*.d.ts
engines/*/spec/**/*.ttl

packages/*/lib/**/*.cjs
packages/*/lib/**/*.js
Expand Down
3 changes: 3 additions & 0 deletions engines/engine-sparql-1-1-adjust/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
},
"sideEffects": false,
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
Expand Down
3 changes: 3 additions & 0 deletions engines/engine-sparql-1-1/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
Expand Down
3 changes: 3 additions & 0 deletions engines/engine-sparql-1-2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
Expand Down
12 changes: 12 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"command": {
"publish": {
"ignoreChanges": [
"*.md"
],
"message": "Bump to release version %s",
"allowBranch": [
"main"
],
"npmClient": "npm"
}
},
"version": "0.0.0",
"packages": [
"packages/*",
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,16 @@
"packages/*"
],
"scripts": {
"bench": "yarn build && vitest bench --run",
"build": "yarn build:ts && yarn build:transpile && yarn build:transpile-spec",
"build:ts": "tsc",
"build:transpile": "lerna run build:transpile",
"build:transpile-spec": "lerna run build:transpile-spec",
"clean": "git clean -dfx",
"test": "yarn build && vitest test --run",
"bench": "yarn build && vitest bench --run",
"publish": "yarn run build",
"spec:all": "lerna run spec:all --concurrency 1",
"spec:earl": "lerna run spec:earl --concurrency 1"
"spec:earl": "lerna run spec:earl --concurrency 1",
"test": "yarn build && vitest test --run"
},
"devDependencies": {
"@rdfjs/types": "^2.0.0",
Expand Down
3 changes: 3 additions & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
Expand Down
3 changes: 3 additions & 0 deletions packages/rules-sparql-1-1-adjust/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"url": "https://github.com/comunica/traqula/issues"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
Expand Down
3 changes: 3 additions & 0 deletions packages/rules-sparql-1-1/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"url": "https://github.com/comunica/traqula/issues"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
Expand Down
3 changes: 3 additions & 0 deletions packages/rules-sparql-1-2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"url": "https://github.com/comunica/traqula/issues"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
Expand Down
3 changes: 3 additions & 0 deletions packages/test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"url": "https://github.com/comunica/traqula/issues"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"lib/statics/**",
"lib/**/*.d.ts",
Expand Down

0 comments on commit 3a4c48f

Please sign in to comment.