Skip to content

Commit

Permalink
v1.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
newcat committed Oct 7, 2022
1 parent a5e5aed commit 23b6256
Show file tree
Hide file tree
Showing 9 changed files with 299 additions and 301 deletions.
10 changes: 4 additions & 6 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"packages": [
"packages/*"
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "1.10.1"
"packages": ["packages/*"],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "1.10.2"
}
100 changes: 50 additions & 50 deletions packages/baklavajs-core/package.json
Original file line number Diff line number Diff line change
@@ -1,52 +1,52 @@
{
"name": "@baklavajs/core",
"version": "1.10.1",
"description": "Core logic of BaklavaJS, a graph editor / node editor for the web",
"author": "newcat <[email protected]>",
"homepage": "https://newcat.github.io/baklavajs",
"license": "MIT",
"files": [
"dist/**/!(report.html)"
],
"main": "dist/index.js",
"exports": {
"import": "./dist/index.cjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"types": "dist/baklavajs-core/src/index.d.ts",
"scripts": {
"build": "rimraf ./dist && webpack",
"test": "mocha -r @ts-tools/node/r \"test/**/*.spec.ts\"",
"docs": "typedoc --json ../../docs/api/core.json --options ../../typedoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newcat/baklavajs.git"
},
"bugs": {
"url": "https://github.com/newcat/baklavajs/issues"
},
"dependencies": {
"@baklavajs/events": "^1.10.0"
},
"devDependencies": {
"@ts-tools/node": "^4.0.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/sinon": "^10.0.13",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"sinon": "^14.0.1",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"publishConfig": {
"access": "public"
},
"gitHead": "723bf8b6249e6b67d9a7a5a9c84cf1ee0ca33739"
"name": "@baklavajs/core",
"version": "1.10.2",
"description": "Core logic of BaklavaJS, a graph editor / node editor for the web",
"author": "newcat <[email protected]>",
"homepage": "https://newcat.github.io/baklavajs",
"license": "MIT",
"files": [
"dist/**/!(report.html)"
],
"main": "dist/index.js",
"exports": {
"import": "./dist/index.cjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"types": "dist/baklavajs-core/src/index.d.ts",
"scripts": {
"build": "rimraf ./dist && webpack",
"test": "mocha -r @ts-tools/node/r \"test/**/*.spec.ts\"",
"docs": "typedoc --json ../../docs/api/core.json --options ../../typedoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newcat/baklavajs.git"
},
"bugs": {
"url": "https://github.com/newcat/baklavajs/issues"
},
"dependencies": {
"@baklavajs/events": "^1.10.2"
},
"devDependencies": {
"@ts-tools/node": "^4.0.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/sinon": "^10.0.13",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"sinon": "^14.0.1",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"publishConfig": {
"access": "public"
},
"gitHead": "723bf8b6249e6b67d9a7a5a9c84cf1ee0ca33739"
}
56 changes: 28 additions & 28 deletions packages/baklavajs-events/package.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
{
"name": "@baklavajs/events",
"version": "1.10.0",
"description": "Implementation of the Baklava event system. Mainly intended for internal use in the Baklava ecosystem",
"author": "newcat <[email protected]>",
"homepage": "https://github.com/newcat/baklavajs#readme",
"license": "MIT",
"files": [
"dist/**/*"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "rimraf ./dist && tsc",
"docs": "typedoc --json ../../docs/api/events.json --options ../../typedoc.json"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newcat/baklavajs.git"
},
"bugs": {
"url": "https://github.com/newcat/baklavajs/issues"
},
"devDependencies": {
"typescript": "^4.8.4"
}
"name": "@baklavajs/events",
"version": "1.10.2",
"description": "Implementation of the Baklava event system. Mainly intended for internal use in the Baklava ecosystem",
"author": "newcat <[email protected]>",
"homepage": "https://github.com/newcat/baklavajs#readme",
"license": "MIT",
"files": [
"dist/**/*"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "rimraf ./dist && tsc",
"docs": "typedoc --json ../../docs/api/events.json --options ../../typedoc.json"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newcat/baklavajs.git"
},
"bugs": {
"url": "https://github.com/newcat/baklavajs/issues"
},
"devDependencies": {
"typescript": "^4.8.4"
}
}
14 changes: 7 additions & 7 deletions packages/baklavajs-full/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "baklavajs",
"version": "1.10.1",
"version": "1.10.2",
"description": "Full installation of BaklavaJS including the core and all plugins",
"author": "newcat <[email protected]>",
"homepage": "https://newcat.github.io/baklavajs",
Expand Down Expand Up @@ -34,10 +34,10 @@
"access": "public"
},
"dependencies": {
"@baklavajs/core": "1.10.1",
"@baklavajs/plugin-engine": "1.10.1",
"@baklavajs/plugin-interface-types": "1.10.1",
"@baklavajs/plugin-options-vue": "1.10.1",
"@baklavajs/plugin-renderer-vue": "1.10.1"
"@baklavajs/core": "1.10.2",
"@baklavajs/plugin-engine": "1.10.2",
"@baklavajs/plugin-interface-types": "1.10.2",
"@baklavajs/plugin-options-vue": "1.10.2",
"@baklavajs/plugin-renderer-vue": "1.10.2"
}
}
}
48 changes: 24 additions & 24 deletions packages/baklavajs-playground/package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"name": "@baklavajs/playground",
"version": "1.10.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve"
},
"dependencies": {
"vue": "^2.7.10",
"vue-class-component": "7.2.6",
"vue-property-decorator": "9.1.2"
},
"devDependencies": {
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"typescript": "^4.8.4",
"vue-template-compiler": "^2.7.10"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
"name": "@baklavajs/playground",
"version": "1.10.2",
"private": true,
"scripts": {
"serve": "vue-cli-service serve"
},
"dependencies": {
"vue": "^2.7.10",
"vue-class-component": "7.2.6",
"vue-property-decorator": "9.1.2"
},
"devDependencies": {
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"typescript": "^4.8.4",
"vue-template-compiler": "^2.7.10"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}
84 changes: 42 additions & 42 deletions packages/baklavajs-plugin-engine/package.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
{
"name": "@baklavajs/plugin-engine",
"version": "1.10.1",
"description": "Execute BaklavaJS graphs",
"author": "newcat <[email protected]>",
"homepage": "https://newcat.github.io/baklavajs",
"license": "MIT",
"files": [
"dist/**/!(report.html)"
],
"main": "dist/index.js",
"exports": {
"import": "./dist/index.cjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"types": "dist/baklavajs-plugin-engine/src/index.d.ts",
"scripts": {
"build": "rimraf ./dist && webpack",
"docs": "typedoc --json ../../docs/api/plugin-engine.json --options ../../typedoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newcat/baklavajs.git"
},
"bugs": {
"url": "https://github.com/newcat/baklavajs/issues"
},
"dependencies": {
"@baklavajs/events": "^1.10.0"
},
"devDependencies": {
"async-mutex": "^0.4.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"publishConfig": {
"access": "public"
},
"gitHead": "723bf8b6249e6b67d9a7a5a9c84cf1ee0ca33739"
"name": "@baklavajs/plugin-engine",
"version": "1.10.2",
"description": "Execute BaklavaJS graphs",
"author": "newcat <[email protected]>",
"homepage": "https://newcat.github.io/baklavajs",
"license": "MIT",
"files": [
"dist/**/!(report.html)"
],
"main": "dist/index.js",
"exports": {
"import": "./dist/index.cjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"types": "dist/baklavajs-plugin-engine/src/index.d.ts",
"scripts": {
"build": "rimraf ./dist && webpack",
"docs": "typedoc --json ../../docs/api/plugin-engine.json --options ../../typedoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newcat/baklavajs.git"
},
"bugs": {
"url": "https://github.com/newcat/baklavajs/issues"
},
"dependencies": {
"@baklavajs/events": "^1.10.2"
},
"devDependencies": {
"async-mutex": "^0.4.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"publishConfig": {
"access": "public"
},
"gitHead": "723bf8b6249e6b67d9a7a5a9c84cf1ee0ca33739"
}
Loading

0 comments on commit 23b6256

Please sign in to comment.