Skip to content

Commit

Permalink
Changing to pylonide scoped package
Browse files Browse the repository at this point in the history
- Version bump to 0.1.0
- Dependency changes to ©pylonide scoped packages
- Indentation
- New package lock
  • Loading branch information
exsilium committed Aug 8, 2019
1 parent 15bab6a commit 7304af8
Show file tree
Hide file tree
Showing 5 changed files with 82 additions and 83 deletions.
12 changes: 6 additions & 6 deletions http-adapter/http-adapter-ext.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ var assert = require("assert");

module.exports = function setup(options, imports, register) {

assert(options.mount, "option 'mount' is required");
assert(options.mount, "option 'mount' is required");

imports.connect.useMain(require("vfs/http-adapter/restful")(options.mount, imports.vfs));
imports.connect.useMain(require("@pylonide/vfs-http-adapter/restful")(options.mount, imports.vfs));

register(null, {
"vfs-rest": {}
});
}
register(null, {
"vfs-rest": {}
});
}
8 changes: 4 additions & 4 deletions local/local-ext.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ var assert = require("assert");

module.exports = function setup(options, imports, register) {

assert(options.root, "option 'root' is required");
assert(options.root, "option 'root' is required");

register(null, {
"vfs": require("vfs-local")(options)
});
register(null, {
"vfs": require("@pylonide/vfs-local")(options)
});
}
20 changes: 10 additions & 10 deletions local/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "vfs.local",
"version": "0.0.1",
"main": "local-ext.js",
"private": true,
"name": "vfs.local",
"version": "0.1.0",
"main": "local-ext.js",
"private": true,

"dependencies": {
"vfs-local": "~0.0.3"
},
"dependencies": {
"@pylonide/vfs-local": "~0.5.0"
},

"plugin": {
"provides": ["vfs"]
}
"plugin": {
"provides": ["vfs"]
}
}
83 changes: 42 additions & 41 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 20 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
{
"name": "vfs-architect",
"description": "Architect plugins for vfs",
"version": "0.0.6",
"author": "ajax.org B.V. <info@ajax.org>",
"contributors": [
{
"name": "Fabian Jakobs",
"email": "fabian@c9.io"
},
"Sten Feldman <exile@chamber.ee> (http://sten.feldman.eesti.ee/)"
],
"dependencies": {
"architect": "~0.1.13",
"vfs-local": "https://github.com/pylonide/vfs-local/tarball/b72cd6e74e923f72bf03ebab2c39329fd3304f45"
"name": "@pylonide/vfs-architect",
"description": "Architect plugins for vfs",
"version": "0.1.0",
"author": "ajax.org B.V. <info@ajax.org>",
"contributors": [
{
"name": "Fabian Jakobs",
"email": "fabian@c9.io"
},
"optionalDependencies": {
"vfs": "https://github.com/pylonide/vfs/tarball/078762a9e5fe6f4652a3c0a81ff65bb3bea1dd08"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/pylonide/vfs-architect.git"
}
"Sten Feldman <exile@chamber.ee> (http://sten.feldman.eesti.ee/)"
],
"dependencies": {
"architect": "~0.1.13",
"@pylonide/vfs-local": "~0.5.0",
"@pylonide/vfs-http-adapter": "~0.3.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/pylonide/vfs-architect.git"
}
}

0 comments on commit 7304af8

Please sign in to comment.