Skip to content

Commit

Permalink
Got vite, cuke and publish all working with 2 separate module specs
Browse files Browse the repository at this point in the history
  • Loading branch information
robmoffat committed May 14, 2024
1 parent b9c0ce4 commit 3215fd2
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,6 @@ address of the embed page in the cookie? Problem is, the cookie is scoped to the
```
yarn npm login
yarn workspaces foreach --all version 0.0.10 (or whatever)
yarn workspaces foreach --all run npm publish --access=public
yarn workspaces foreach --all npm publish --access=public

```
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kite9/web-fdc3",
"private": true,
"version": "0.0.12",
"version": "0.0.14",
"workspaces": [
"packages/*"
],
Expand All @@ -20,4 +20,4 @@
"dependencies": {
"rimraf": "^5.0.7"
}
}
}
4 changes: 2 additions & 2 deletions packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "@kite9/client",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"version": "0.0.12",
"version": "0.0.14",
"scripts": {
"build": "tsc -b",
"build": "tsc --module es2022",
"clean": "rimraf dist; rimraf cucumber-report.html; rimraf coverage"
},
"files": [
Expand Down
8 changes: 4 additions & 4 deletions packages/da-proxy/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@kite9/da-proxy",
"version": "0.0.12",
"version": "0.0.14",
"files": [
"dist"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc -b",
"test": "nyc --reporter=lcov --reporter=text cucumber-js",
"build": "tsc --module es2022",
"test": "tsc; nyc --reporter=lcov --reporter=text cucumber-js",
"clean": "rimraf dist; rimraf cucumber-report.html; rimraf coverage; rimraf .nyc_output; rimraf node_modules"
},
"dependencies": {
Expand Down Expand Up @@ -41,4 +41,4 @@
"typescript": "^5.3.2",
"uuid": "^9.0.1"
}
}
}
4 changes: 2 additions & 2 deletions packages/da-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kite9/da-server",
"version": "0.0.12",
"version": "0.0.14",
"files": [
"dist"
],
Expand All @@ -10,7 +10,7 @@
"clean": "rimraf dist; rimraf generated; rimraf node_modules; rumraf coverage; rimraf .nyc_output; rimraf cucumber-report.html",
"directory-openapi": "npx openapi-typescript https://fdc3.finos.org/schemas/2.1/appd.schema.json --output generated/directory-schema.ts",
"test": "nyc --reporter=lcov --reporter=text cucumber-js",
"build": "run directory-openapi; tsc -b"
"build": "run directory-openapi; tsc --module es2022"
},
"dependencies": {
"@finos/fdc3": "^2.1.0-beta.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/demo/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kite9/demo",
"private": true,
"version": "0.0.12",
"version": "0.0.14",
"scripts": {
"dev": "nodemon -w src/server -x tsx src/server/main.ts",
"start": "NODE_ENV=production tsx src/server/main.ts",
Expand Down
9 changes: 5 additions & 4 deletions packages/fdc3-common/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"name": "@kite9/fdc3-common",
"version": "0.0.12",
"version": "0.0.14",
"files": [
"dist"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc -b",
"clean": "rimraf dist;"
"build": "tsc --module es2022",
"clean": "rimraf dist;",
"test": "tsc"
},
"dependencies": {
"@finos/fdc3": "^2.1.0-beta.6"
Expand All @@ -17,4 +18,4 @@
"rimraf": "^5.0.7",
"typescript": "^5.3.2"
}
}
}
2 changes: 1 addition & 1 deletion packages/fdc3-workbench/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fdc3-workbench",
"version": "0.0.12",
"version": "0.0.14",
"private": true,
"homepage": ".",
"license": "Apache-2.0",
Expand Down
1 change: 0 additions & 1 deletion tsconfig.root.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"isolatedModules": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": true,
/* output setting */
Expand Down

0 comments on commit 3215fd2

Please sign in to comment.