-
-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
299 additions
and
301 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
@@ -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" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
Oops, something went wrong.