Skip to content

Commit

Permalink
Replace scoped-dependency and publish as v0.1.1
Browse files Browse the repository at this point in the history
References: atom/apm#702
  • Loading branch information
Alhadis committed Mar 21, 2017
1 parent eb73477 commit acc8b90
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/directory.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

const {realpath, normalisePath} = require("@alhadis/utils");
const {realpath, normalisePath} = require("alhadis.utils");
const EntityType = require("./entity-type.js");
const Resource = require("./resource.js");

Expand Down
2 changes: 1 addition & 1 deletion lib/file.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const path = require("path");
const Atom = require("atom");
const {CompositeDisposable, Disposable} = Atom;

const {sipFile} = require("@alhadis/utils");
const {sipFile} = require("alhadis.utils");
const Resource = require("./resource.js");
const System = require("./system.js");

Expand Down
2 changes: 1 addition & 1 deletion lib/filesystem.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use strict";

const {CompositeDisposable, Disposable, Emitter} = require("atom");
const {lstat, realpath, statify} = require("@alhadis/utils");
const {lstat, realpath, statify} = require("alhadis.utils");
const Directory = require("./directory.js");
const EntityType = require("./entity-type.js");
const File = require("./file.js");
Expand Down
2 changes: 1 addition & 1 deletion lib/resource.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const {basename} = require("path");
const {CompositeDisposable, Disposable, Emitter} = require("atom");
const {lstat, realpath, statify, MappedDisposable, normalisePath} = require("@alhadis/utils");
const {lstat, realpath, statify, MappedDisposable, normalisePath} = require("alhadis.utils");
const EntityType = require("./entity-type.js");
const System = require("./system.js");

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "atom-fs",
"version": "v0.1.0",
"version": "v0.1.1",
"license": "ISC",
"author": "John Gardner <[email protected]>",
"repository": "https://github.com/Alhadis/Atom-FS",
"description": "Filesystem abstraction layer for Atom",
"engines": {"atom": ">=1.13.0"},
"dependencies": {
"@alhadis/utils": "*"
"alhadis.utils": "*"
},
"devDependencies": {
"atom-mocha": "*"
Expand Down

0 comments on commit acc8b90

Please sign in to comment.