Remove unnecessary resources, add bulma, and add AdvMakefile
This commit is contained in:
16
bulma/node_modules/@nodelib/fs.walk/out/tests/index.d.ts
generated
vendored
Normal file
16
bulma/node_modules/@nodelib/fs.walk/out/tests/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import * as sinon from 'sinon';
|
||||
import { Entry, Errno } from '../types';
|
||||
export declare function buildFakeFileEntry(entry?: Partial<Entry>): Entry;
|
||||
export declare function buildFakeDirectoryEntry(entry?: Partial<Entry>): Entry;
|
||||
export declare const EPERM_ERRNO: Errno;
|
||||
export declare class TestAsyncReader {
|
||||
read: sinon.SinonStub;
|
||||
destroy: sinon.SinonStub;
|
||||
onError: sinon.SinonStub;
|
||||
onEntry: sinon.SinonStub;
|
||||
onEnd: sinon.SinonStub;
|
||||
}
|
||||
export declare class TestSyncReader {
|
||||
read: sinon.SinonStub;
|
||||
}
|
||||
//# sourceMappingURL=index.d.ts.map
|
||||
1
bulma/node_modules/@nodelib/fs.walk/out/tests/index.d.ts.map
generated
vendored
Normal file
1
bulma/node_modules/@nodelib/fs.walk/out/tests/index.d.ts.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tests/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAExC,wBAAgB,kBAAkB,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,GAAG,KAAK,CAOhE;AAED,wBAAgB,uBAAuB,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,GAAG,KAAK,CAOrE;AAED,eAAO,MAAM,WAAW,EAAE,KAIzB,CAAC;AAEF,qBAAa,eAAe;IACpB,IAAI,EAAE,KAAK,CAAC,SAAS,CAAgB;IACrC,OAAO,EAAE,KAAK,CAAC,SAAS,CAAgB;IACxC,OAAO,EAAE,KAAK,CAAC,SAAS,CAAgB;IACxC,OAAO,EAAE,KAAK,CAAC,SAAS,CAAgB;IACxC,KAAK,EAAE,KAAK,CAAC,SAAS,CAAgB;CAC7C;AAED,qBAAa,cAAc;IACnB,IAAI,EAAE,KAAK,CAAC,SAAS,CAAgB;CAC5C"}
|
||||
34
bulma/node_modules/@nodelib/fs.walk/out/tests/index.js
generated
vendored
Normal file
34
bulma/node_modules/@nodelib/fs.walk/out/tests/index.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.TestSyncReader = exports.TestAsyncReader = exports.EPERM_ERRNO = exports.buildFakeDirectoryEntry = exports.buildFakeFileEntry = void 0;
|
||||
const sinon = require("sinon");
|
||||
const fs_macchiato_1 = require("../../../fs.macchiato");
|
||||
function buildFakeFileEntry(entry) {
|
||||
return Object.assign({ name: 'fake.txt', path: 'directory/fake.txt', dirent: new fs_macchiato_1.Dirent({ name: 'fake.txt' }) }, entry);
|
||||
}
|
||||
exports.buildFakeFileEntry = buildFakeFileEntry;
|
||||
function buildFakeDirectoryEntry(entry) {
|
||||
return Object.assign({ name: 'fake', path: 'directory/fake', dirent: new fs_macchiato_1.Dirent({ name: 'fake', isFile: false, isDirectory: true }) }, entry);
|
||||
}
|
||||
exports.buildFakeDirectoryEntry = buildFakeDirectoryEntry;
|
||||
exports.EPERM_ERRNO = {
|
||||
name: 'EPERM',
|
||||
code: 'EPERM',
|
||||
message: 'EPERM'
|
||||
};
|
||||
class TestAsyncReader {
|
||||
constructor() {
|
||||
this.read = sinon.stub();
|
||||
this.destroy = sinon.stub();
|
||||
this.onError = sinon.stub();
|
||||
this.onEntry = sinon.stub();
|
||||
this.onEnd = sinon.stub();
|
||||
}
|
||||
}
|
||||
exports.TestAsyncReader = TestAsyncReader;
|
||||
class TestSyncReader {
|
||||
constructor() {
|
||||
this.read = sinon.stub();
|
||||
}
|
||||
}
|
||||
exports.TestSyncReader = TestSyncReader;
|
||||
Reference in New Issue
Block a user