Compare commits
31 Commits
Author | SHA1 | Date | |
---|---|---|---|
fc51d498c7 | |||
6474016fc1 | |||
ea42dbd1c3 | |||
9e8ce8215c | |||
b02ab97d4f | |||
ecfefc250c | |||
dde9948404 | |||
d041d8de68 | |||
f03b3df55b | |||
ca387124ee | |||
027b3fe9ad | |||
1b4681c065 | |||
96168fd870 | |||
e81c37e60a | |||
87454d41da | |||
97ae2d87b1 | |||
e23624a93f | |||
7183fcc00a | |||
9fad6100f0 | |||
d0e3065d12 | |||
5245e50f3d | |||
00bb39b8fe | |||
ddfae30a18 | |||
618b3da86e | |||
482bc6c18e | |||
ac988b9b09 | |||
0b6c83a806 | |||
37cbf0f8c8 | |||
29decabf91 | |||
afcb5d5b0c | |||
53905df003 |
66
.gitea/workflows/default_nottags.yaml
Normal file
66
.gitea/workflows/default_nottags.yaml
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
name: Default (not tags)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags-ignore:
|
||||||
|
- '**'
|
||||||
|
|
||||||
|
env:
|
||||||
|
IMAGE: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@gitea.lossless.digital/${{gitea.repository}}.git
|
||||||
|
NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}}
|
||||||
|
NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}}
|
||||||
|
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
|
||||||
|
NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
security:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
continue-on-error: true
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install pnpm and npmci
|
||||||
|
run: |
|
||||||
|
pnpm install -g pnpm
|
||||||
|
pnpm install -g @shipzone/npmci
|
||||||
|
|
||||||
|
- name: Run npm prepare
|
||||||
|
run: npmci npm prepare
|
||||||
|
|
||||||
|
- name: Audit production dependencies
|
||||||
|
run: |
|
||||||
|
npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
npmci command pnpm audit --audit-level=high --prod
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
- name: Audit development dependencies
|
||||||
|
run: |
|
||||||
|
npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
npmci command pnpm audit --audit-level=high --dev
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
test:
|
||||||
|
if: ${{ always() }}
|
||||||
|
needs: security
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Test stable
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm install
|
||||||
|
npmci npm test
|
||||||
|
|
||||||
|
- name: Test build
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm install
|
||||||
|
npmci npm build
|
124
.gitea/workflows/default_tags.yaml
Normal file
124
.gitea/workflows/default_tags.yaml
Normal file
@ -0,0 +1,124 @@
|
|||||||
|
name: Default (tags)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '*'
|
||||||
|
|
||||||
|
env:
|
||||||
|
IMAGE: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@gitea.lossless.digital/${{gitea.repository}}.git
|
||||||
|
NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}}
|
||||||
|
NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}}
|
||||||
|
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
|
||||||
|
NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
security:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
continue-on-error: true
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Prepare
|
||||||
|
run: |
|
||||||
|
pnpm install -g pnpm
|
||||||
|
pnpm install -g @shipzone/npmci
|
||||||
|
npmci npm prepare
|
||||||
|
|
||||||
|
- name: Audit production dependencies
|
||||||
|
run: |
|
||||||
|
npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
npmci command pnpm audit --audit-level=high --prod
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
- name: Audit development dependencies
|
||||||
|
run: |
|
||||||
|
npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
npmci command pnpm audit --audit-level=high --dev
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
test:
|
||||||
|
if: ${{ always() }}
|
||||||
|
needs: security
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Prepare
|
||||||
|
run: |
|
||||||
|
pnpm install -g pnpm
|
||||||
|
pnpm install -g @shipzone/npmci
|
||||||
|
npmci npm prepare
|
||||||
|
|
||||||
|
- name: Test stable
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm install
|
||||||
|
npmci npm test
|
||||||
|
|
||||||
|
- name: Test build
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm install
|
||||||
|
npmci npm build
|
||||||
|
|
||||||
|
release:
|
||||||
|
needs: test
|
||||||
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Prepare
|
||||||
|
run: |
|
||||||
|
pnpm install -g pnpm
|
||||||
|
pnpm install -g @shipzone/npmci
|
||||||
|
npmci npm prepare
|
||||||
|
|
||||||
|
- name: Release
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm publish
|
||||||
|
|
||||||
|
metadata:
|
||||||
|
needs: test
|
||||||
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Prepare
|
||||||
|
run: |
|
||||||
|
pnpm install -g pnpm
|
||||||
|
pnpm install -g @shipzone/npmci
|
||||||
|
npmci npm prepare
|
||||||
|
|
||||||
|
- name: Code quality
|
||||||
|
run: |
|
||||||
|
npmci command npm install -g typescript
|
||||||
|
npmci npm install
|
||||||
|
|
||||||
|
- name: Trigger
|
||||||
|
run: npmci trigger
|
||||||
|
|
||||||
|
- name: Build docs and upload artifacts
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm install
|
||||||
|
pnpm install -g @gitzone/tsdoc
|
||||||
|
npmci command tsdoc
|
||||||
|
continue-on-error: true
|
20
.gitignore
vendored
20
.gitignore
vendored
@ -1,4 +1,20 @@
|
|||||||
node_modules/
|
.nogit/
|
||||||
|
|
||||||
|
# artifacts
|
||||||
coverage/
|
coverage/
|
||||||
pages/
|
|
||||||
public/
|
public/
|
||||||
|
pages/
|
||||||
|
|
||||||
|
# installs
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# caches
|
||||||
|
.yarn/
|
||||||
|
.cache/
|
||||||
|
.rpt2_cache
|
||||||
|
|
||||||
|
# builds
|
||||||
|
dist/
|
||||||
|
dist_*/
|
||||||
|
|
||||||
|
# custom
|
162
.gitlab-ci.yml
162
.gitlab-ci.yml
@ -1,33 +1,141 @@
|
|||||||
image: hosttoday/ht-docker-node:npmts
|
# gitzone ci_default
|
||||||
stages:
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
- test
|
|
||||||
- release
|
|
||||||
testLEGACY:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci test legacy
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
allow_failure: true
|
|
||||||
testLTS:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci test lts
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
|
|
||||||
testSTABLE:
|
cache:
|
||||||
stage: test
|
paths:
|
||||||
|
- .npmci_cache/
|
||||||
|
key: '$CI_BUILD_STAGE'
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- security
|
||||||
|
- test
|
||||||
|
- release
|
||||||
|
- metadata
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- npm install -g @shipzone/npmci
|
||||||
|
|
||||||
|
# ====================
|
||||||
|
# security stage
|
||||||
|
# ====================
|
||||||
|
mirror:
|
||||||
|
stage: security
|
||||||
script:
|
script:
|
||||||
- npmci test stable
|
- npmci git mirror
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
release:
|
|
||||||
stage: release
|
|
||||||
environment: npm_registry
|
|
||||||
script:
|
|
||||||
- npmci publish
|
|
||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
tags:
|
tags:
|
||||||
|
- lossless
|
||||||
- docker
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
|
auditProductionDependencies:
|
||||||
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
stage: security
|
||||||
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci command npm install --production --ignore-scripts
|
||||||
|
- npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
- npmci command npm audit --audit-level=high --only=prod --production
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
allow_failure: true
|
||||||
|
|
||||||
|
auditDevDependencies:
|
||||||
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
stage: security
|
||||||
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci command npm install --ignore-scripts
|
||||||
|
- npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
- npmci command npm audit --audit-level=high --only=dev
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
allow_failure: true
|
||||||
|
|
||||||
|
# ====================
|
||||||
|
# test stage
|
||||||
|
# ====================
|
||||||
|
|
||||||
|
testStable:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci node install stable
|
||||||
|
- npmci npm install
|
||||||
|
- npmci npm test
|
||||||
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
|
||||||
|
testBuild:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci node install stable
|
||||||
|
- npmci npm install
|
||||||
|
- npmci command npm run build
|
||||||
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
|
||||||
|
release:
|
||||||
|
stage: release
|
||||||
|
script:
|
||||||
|
- npmci node install stable
|
||||||
|
- npmci npm publish
|
||||||
|
only:
|
||||||
|
- tags
|
||||||
|
tags:
|
||||||
|
- lossless
|
||||||
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
|
# ====================
|
||||||
|
# metadata stage
|
||||||
|
# ====================
|
||||||
|
codequality:
|
||||||
|
stage: metadata
|
||||||
|
allow_failure: true
|
||||||
|
only:
|
||||||
|
- tags
|
||||||
|
script:
|
||||||
|
- npmci command npm install -g tslint typescript
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci npm install
|
||||||
|
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
|
||||||
|
tags:
|
||||||
|
- lossless
|
||||||
|
- docker
|
||||||
|
- priv
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
stage: metadata
|
||||||
|
script:
|
||||||
|
- npmci trigger
|
||||||
|
only:
|
||||||
|
- tags
|
||||||
|
tags:
|
||||||
|
- lossless
|
||||||
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
|
pages:
|
||||||
|
stage: metadata
|
||||||
|
script:
|
||||||
|
- npmci node install stable
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci command npm install -g @gitzone/tsdoc
|
||||||
|
- npmci npm install
|
||||||
|
- npmci command tsdoc
|
||||||
|
tags:
|
||||||
|
- lossless
|
||||||
|
- docker
|
||||||
|
- notpriv
|
||||||
|
only:
|
||||||
|
- tags
|
||||||
|
artifacts:
|
||||||
|
expire_in: 1 week
|
||||||
|
paths:
|
||||||
|
- public
|
||||||
|
allow_failure: true
|
||||||
|
11
.vscode/launch.json
vendored
Normal file
11
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"command": "npm test",
|
||||||
|
"name": "Run npm test",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "node-terminal"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
.vscode/settings.json
vendored
Normal file
26
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"json.schemas": [
|
||||||
|
{
|
||||||
|
"fileMatch": ["/npmextra.json"],
|
||||||
|
"schema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"npmci": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "settings for npmci"
|
||||||
|
},
|
||||||
|
"gitzone": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "settings for gitzone",
|
||||||
|
"properties": {
|
||||||
|
"projectType": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": ["website", "element", "service", "npm", "wcc"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
28
README.md
28
README.md
@ -1,28 +0,0 @@
|
|||||||
# smartpath
|
|
||||||
offers smart ways to handle paths
|
|
||||||
|
|
||||||
## Availabililty
|
|
||||||
[](https://www.npmjs.com/package/smartpath)
|
|
||||||
[](https://GitLab.com/pushrocks/smartpath)
|
|
||||||
[](https://github.com/pushrocks/smartpath)
|
|
||||||
[](https://pushrocks.gitlab.io/smartpath/)
|
|
||||||
|
|
||||||
## Status for master
|
|
||||||
[](https://GitLab.com/pushrocks/smartpath/commits/master)
|
|
||||||
[](https://GitLab.com/pushrocks/smartpath/commits/master)
|
|
||||||
[](https://www.npmjs.com/package/smartpath)
|
|
||||||
[](https://david-dm.org/pushrocks/smartpath)
|
|
||||||
[](https://www.bithound.io/github/pushrocks/smartpath/master/dependencies/npm)
|
|
||||||
[](https://www.bithound.io/github/pushrocks/smartpath)
|
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
[](http://standardjs.com/)
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
Use TypeScript for best in class instellisense.
|
|
||||||
|
|
||||||
For further information read the linked docs at the top of this README.
|
|
||||||
|
|
||||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
|
||||||
|
|
||||||
[](https://push.rocks)
|
|
5
dist/index.d.ts
vendored
5
dist/index.d.ts
vendored
@ -1,5 +0,0 @@
|
|||||||
import * as check from './smartpath.check';
|
|
||||||
import * as get from './smartpath.get';
|
|
||||||
import * as transform from './smartpath.transform';
|
|
||||||
export { check, get, transform };
|
|
||||||
export * from './smartpath.classes.smartpath';
|
|
13
dist/index.js
vendored
13
dist/index.js
vendored
@ -1,13 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
function __export(m) {
|
|
||||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
||||||
}
|
|
||||||
// import modules
|
|
||||||
const check = require("./smartpath.check");
|
|
||||||
exports.check = check;
|
|
||||||
const get = require("./smartpath.get");
|
|
||||||
exports.get = get;
|
|
||||||
const transform = require("./smartpath.transform");
|
|
||||||
exports.transform = transform;
|
|
||||||
__export(require("./smartpath.classes.smartpath"));
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7O0FBQUEsaUJBQWlCO0FBQ2pCLDJDQUEwQztBQU10QyxzQkFBSztBQUxULHVDQUFzQztBQU1sQyxrQkFBRztBQUxQLG1EQUFrRDtBQU05Qyw4QkFBUztBQUdiLG1EQUE2QyJ9
|
|
3
dist/smartpath.check.d.ts
vendored
3
dist/smartpath.check.d.ts
vendored
@ -1,3 +0,0 @@
|
|||||||
import 'typings-global';
|
|
||||||
export declare let isDir: (pathArg: string) => boolean;
|
|
||||||
export declare let isFile: (pathArg: any) => boolean;
|
|
9
dist/smartpath.check.js
vendored
9
dist/smartpath.check.js
vendored
@ -1,9 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
require("typings-global");
|
|
||||||
exports.isDir = function (pathArg) {
|
|
||||||
return !exports.isFile(pathArg);
|
|
||||||
};
|
|
||||||
exports.isFile = function (pathArg) {
|
|
||||||
return /\.[a-zA-Z]*$/.test(pathArg); // checks if there is a .anything at the end
|
|
||||||
};
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRwYXRoLmNoZWNrLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvc21hcnRwYXRoLmNoZWNrLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSwwQkFBdUI7QUFHWixRQUFBLEtBQUssR0FBRyxVQUFVLE9BQWU7SUFDMUMsTUFBTSxDQUFDLENBQUMsY0FBTSxDQUFDLE9BQU8sQ0FBQyxDQUFBO0FBQ3pCLENBQUMsQ0FBQTtBQUVVLFFBQUEsTUFBTSxHQUFHLFVBQVUsT0FBTztJQUNuQyxNQUFNLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQSxDQUFDLDRDQUE0QztBQUNsRixDQUFDLENBQUEifQ==
|
|
8
dist/smartpath.classes.smartpath.d.ts
vendored
8
dist/smartpath.classes.smartpath.d.ts
vendored
@ -1,8 +0,0 @@
|
|||||||
import * as getMod from './smartpath.get';
|
|
||||||
export declare class Smartpath {
|
|
||||||
originalPath: string;
|
|
||||||
type: getMod.TPathType;
|
|
||||||
pathLevels: string[];
|
|
||||||
pathLevelsBackwards: string[];
|
|
||||||
constructor(pathArg: string);
|
|
||||||
}
|
|
12
dist/smartpath.classes.smartpath.js
vendored
12
dist/smartpath.classes.smartpath.js
vendored
@ -1,12 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
const getMod = require("./smartpath.get");
|
|
||||||
class Smartpath {
|
|
||||||
constructor(pathArg) {
|
|
||||||
this.originalPath = pathArg;
|
|
||||||
this.type = getMod.type(this.originalPath);
|
|
||||||
this.pathLevels = getMod.pathLevels(this.originalPath);
|
|
||||||
this.pathLevelsBackwards = getMod.pathLevelsBackwards(this.originalPath);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
exports.Smartpath = Smartpath;
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRwYXRoLmNsYXNzZXMuc21hcnRwYXRoLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvc21hcnRwYXRoLmNsYXNzZXMuc21hcnRwYXRoLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFDQSwwQ0FBeUM7QUFFekM7SUFLRSxZQUFZLE9BQWU7UUFDekIsSUFBSSxDQUFDLFlBQVksR0FBRyxPQUFPLENBQUE7UUFDM0IsSUFBSSxDQUFDLElBQUksR0FBRyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQTtRQUMxQyxJQUFJLENBQUMsVUFBVSxHQUFHLE1BQU0sQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFBO1FBQ3RELElBQUksQ0FBQyxtQkFBbUIsR0FBRyxNQUFNLENBQUMsbUJBQW1CLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFBO0lBQzFFLENBQUM7Q0FDRjtBQVhELDhCQVdDIn0=
|
|
9
dist/smartpath.get.d.ts
vendored
9
dist/smartpath.get.d.ts
vendored
@ -1,9 +0,0 @@
|
|||||||
export declare type TPathType = 'url' | 'local';
|
|
||||||
/**
|
|
||||||
* returns the type of the given path. Can be "url" or "local"
|
|
||||||
*/
|
|
||||||
export declare let type: (pathStringArg: string) => TPathType;
|
|
||||||
export declare let home: (pathArgument?: string) => any;
|
|
||||||
export declare type TSystemArg = 'dynamic' | 'windows' | 'linux' | 'osx';
|
|
||||||
export declare let pathLevels: (pathArg: string, systemArg?: TSystemArg) => string[];
|
|
||||||
export declare let pathLevelsBackwards: (pathArg: string, systemArg?: TSystemArg) => string[];
|
|
34
dist/smartpath.get.js
vendored
34
dist/smartpath.get.js
vendored
@ -1,34 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
const plugins = require("./smartpath.plugins");
|
|
||||||
/**
|
|
||||||
* returns the type of the given path. Can be "url" or "local"
|
|
||||||
*/
|
|
||||||
exports.type = function (pathStringArg) {
|
|
||||||
let urlRegex = /http[s|\s]:\/\/.*/i;
|
|
||||||
if (urlRegex.exec(pathStringArg)) {
|
|
||||||
return 'url';
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
return 'local';
|
|
||||||
}
|
|
||||||
;
|
|
||||||
};
|
|
||||||
exports.home = function (pathArgument) {
|
|
||||||
if (pathArgument) {
|
|
||||||
return plugins.home.resolve(pathArgument);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
return plugins.home();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
exports.pathLevels = (pathArg, systemArg = 'dynamic') => {
|
|
||||||
let pathLevelArray;
|
|
||||||
if (systemArg === 'dynamic') {
|
|
||||||
pathLevelArray = pathArg.split(plugins.path.sep);
|
|
||||||
}
|
|
||||||
return pathLevelArray;
|
|
||||||
};
|
|
||||||
exports.pathLevelsBackwards = (pathArg, systemArg) => {
|
|
||||||
return exports.pathLevels(pathArg, systemArg).reverse();
|
|
||||||
};
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRwYXRoLmdldC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3RzL3NtYXJ0cGF0aC5nZXQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLCtDQUErQztBQUcvQzs7R0FFRztBQUNRLFFBQUEsSUFBSSxHQUFHLFVBQVUsYUFBcUI7SUFDN0MsSUFBSSxRQUFRLEdBQUcsb0JBQW9CLENBQUE7SUFDbkMsRUFBRSxDQUFDLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDL0IsTUFBTSxDQUFDLEtBQUssQ0FBQTtJQUNoQixDQUFDO0lBQUMsSUFBSSxDQUFDLENBQUM7UUFDSixNQUFNLENBQUMsT0FBTyxDQUFBO0lBQ2xCLENBQUM7SUFBQSxDQUFDO0FBQ04sQ0FBQyxDQUFBO0FBRVUsUUFBQSxJQUFJLEdBQUcsVUFBVSxZQUFxQjtJQUM3QyxFQUFFLENBQUMsQ0FBQyxZQUFZLENBQUMsQ0FBQyxDQUFDO1FBQ2YsTUFBTSxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxDQUFBO0lBQzdDLENBQUM7SUFBQyxJQUFJLENBQUMsQ0FBQztRQUNKLE1BQU0sQ0FBQyxPQUFPLENBQUMsSUFBSSxFQUFFLENBQUE7SUFDekIsQ0FBQztBQUNMLENBQUMsQ0FBQTtBQUlVLFFBQUEsVUFBVSxHQUFHLENBQUMsT0FBZSxFQUFFLFlBQXdCLFNBQVM7SUFDdkUsSUFBSSxjQUF3QixDQUFBO0lBQzVCLEVBQUUsQ0FBQyxDQUFDLFNBQVMsS0FBSyxTQUFTLENBQUMsQ0FBQyxDQUFDO1FBQzFCLGNBQWMsR0FBRyxPQUFPLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUE7SUFDcEQsQ0FBQztJQUNELE1BQU0sQ0FBQyxjQUFjLENBQUE7QUFDekIsQ0FBQyxDQUFBO0FBRVUsUUFBQSxtQkFBbUIsR0FBRyxDQUFDLE9BQWUsRUFBRSxTQUFzQjtJQUNyRSxNQUFNLENBQUMsa0JBQVUsQ0FBQyxPQUFPLEVBQUUsU0FBUyxDQUFDLENBQUMsT0FBTyxFQUFFLENBQUE7QUFDbkQsQ0FBQyxDQUFBIn0=
|
|
4
dist/smartpath.plugins.d.ts
vendored
4
dist/smartpath.plugins.d.ts
vendored
@ -1,4 +0,0 @@
|
|||||||
import 'typings-global';
|
|
||||||
declare let home: any;
|
|
||||||
import * as path from 'path';
|
|
||||||
export { home, path };
|
|
7
dist/smartpath.plugins.js
vendored
7
dist/smartpath.plugins.js
vendored
@ -1,7 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
require("typings-global");
|
|
||||||
let home = require('home');
|
|
||||||
exports.home = home;
|
|
||||||
const path = require("path");
|
|
||||||
exports.path = path;
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRwYXRoLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9zbWFydHBhdGgucGx1Z2lucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsMEJBQXVCO0FBQ3ZCLElBQUksSUFBSSxHQUFHLE9BQU8sQ0FBQyxNQUFNLENBQUMsQ0FBQTtBQUl4QixvQkFBSTtBQUhOLDZCQUE0QjtBQUkxQixvQkFBSSJ9
|
|
2
dist/smartpath.transform.d.ts
vendored
2
dist/smartpath.transform.d.ts
vendored
@ -1,2 +0,0 @@
|
|||||||
import 'typings-global';
|
|
||||||
export declare let toAbsolute: (relativeArg: string | string[], baseArg?: string) => any;
|
|
43
dist/smartpath.transform.js
vendored
43
dist/smartpath.transform.js
vendored
@ -1,43 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
require("typings-global");
|
|
||||||
const plugins = require("./smartpath.plugins");
|
|
||||||
/* ------------------------------------------ *
|
|
||||||
* ------------ helpers --------------------- *
|
|
||||||
* ------------------------------------------ */
|
|
||||||
// checks a file
|
|
||||||
let makeAbsolute = function (localPathArg, baseArg) {
|
|
||||||
let absolutePath;
|
|
||||||
let alreadyAbsolute = plugins.path.isAbsolute(localPathArg);
|
|
||||||
if (baseArg && !alreadyAbsolute) {
|
|
||||||
absolutePath = plugins.path.join(baseArg, localPathArg);
|
|
||||||
}
|
|
||||||
else if (!alreadyAbsolute) {
|
|
||||||
absolutePath = plugins.path.resolve(localPathArg);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
absolutePath = localPathArg;
|
|
||||||
}
|
|
||||||
return absolutePath;
|
|
||||||
};
|
|
||||||
/* ------------------------------------------ *
|
|
||||||
* ------- export functions ----------------- *
|
|
||||||
* ------------------------------------------ */
|
|
||||||
exports.toAbsolute = function (relativeArg, baseArg) {
|
|
||||||
if (typeof relativeArg === 'string') {
|
|
||||||
return makeAbsolute(relativeArg, baseArg);
|
|
||||||
}
|
|
||||||
else if (Array.isArray(relativeArg)) {
|
|
||||||
let relativeArray = relativeArg;
|
|
||||||
let absoluteArray = [];
|
|
||||||
for (let key in relativeArray) {
|
|
||||||
absoluteArray.push(makeAbsolute(relativeArray[key], baseArg));
|
|
||||||
}
|
|
||||||
return absoluteArray;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
console.error('smartpath.absolute() could not make sense of the input. ' +
|
|
||||||
'Input is neither String nor Array');
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRwYXRoLnRyYW5zZm9ybS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3RzL3NtYXJ0cGF0aC50cmFuc2Zvcm0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLDBCQUF1QjtBQUN2QiwrQ0FBK0M7QUFFL0M7O2dEQUVnRDtBQUVoRCxpQkFBaUI7QUFDakIsSUFBSSxZQUFZLEdBQUcsVUFBUyxZQUFvQixFQUFFLE9BQWdCO0lBQzlELElBQUksWUFBb0IsQ0FBQTtJQUN4QixJQUFJLGVBQWUsR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxZQUFZLENBQUMsQ0FBQTtJQUMzRCxFQUFFLENBQUMsQ0FBQyxPQUFPLElBQUksQ0FBQyxlQUFlLENBQUMsQ0FBQyxDQUFDO1FBQzlCLFlBQVksR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUMsWUFBWSxDQUFDLENBQUE7SUFDMUQsQ0FBQztJQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLGVBQWUsQ0FBQyxDQUFDLENBQUM7UUFDekIsWUFBWSxHQUFHLE9BQU8sQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxDQUFBO0lBQ3RELENBQUM7SUFBQyxJQUFJLENBQUMsQ0FBQztRQUNKLFlBQVksR0FBRyxZQUFZLENBQUE7SUFDL0IsQ0FBQztJQUNELE1BQU0sQ0FBQyxZQUFZLENBQUE7QUFDdkIsQ0FBQyxDQUFBO0FBRUQ7O2dEQUVnRDtBQUNyQyxRQUFBLFVBQVUsR0FBRyxVQUFTLFdBQThCLEVBQUUsT0FBZ0I7SUFDN0UsRUFBRSxDQUFDLENBQUMsT0FBTyxXQUFXLEtBQUssUUFBUSxDQUFDLENBQUMsQ0FBQztRQUNsQyxNQUFNLENBQUMsWUFBWSxDQUFDLFdBQVcsRUFBQyxPQUFPLENBQUMsQ0FBQTtJQUM1QyxDQUFDO0lBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsV0FBVyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQ3BDLElBQUksYUFBYSxHQUFHLFdBQVcsQ0FBQTtRQUMvQixJQUFJLGFBQWEsR0FBYSxFQUFFLENBQUE7UUFDaEMsR0FBRyxDQUFDLENBQUMsSUFBSSxHQUFHLElBQUksYUFBYSxDQUFDLENBQUMsQ0FBQztZQUM1QixhQUFhLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxhQUFhLENBQUMsR0FBRyxDQUFDLEVBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQTtRQUNoRSxDQUFDO1FBQ0QsTUFBTSxDQUFDLGFBQWEsQ0FBQTtJQUN4QixDQUFDO0lBQUMsSUFBSSxDQUFDLENBQUM7UUFDSixPQUFPLENBQUMsS0FBSyxDQUFDLDBEQUEwRDtZQUNwRSxtQ0FBbUMsQ0FBQyxDQUFBO1FBQ3hDLE1BQU0sQ0FBQyxLQUFLLENBQUE7SUFDaEIsQ0FBQztBQUNMLENBQUMsQ0FBQSJ9
|
|
@ -1,6 +1,6 @@
|
|||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
Copyright (c) 2015 Push.Rocks
|
Copyright (c) 2015 Lossless GmbH
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
16
npmextra.json
Normal file
16
npmextra.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"npmci": {
|
||||||
|
"npmAccessLevel": "public"
|
||||||
|
},
|
||||||
|
"gitzone": {
|
||||||
|
"projectType": "npm",
|
||||||
|
"module": {
|
||||||
|
"githost": "gitlab.com",
|
||||||
|
"gitscope": "push.rocks",
|
||||||
|
"gitrepo": "smartpath",
|
||||||
|
"description": "offers smart ways to handle paths",
|
||||||
|
"npmPackagename": "@push.rocks/smartpath",
|
||||||
|
"license": "MIT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"mode": "default",
|
|
||||||
"coveralls": "true"
|
|
||||||
}
|
|
43
package.json
43
package.json
@ -1,11 +1,15 @@
|
|||||||
{
|
{
|
||||||
"name": "smartpath",
|
"name": "@push.rocks/smartpath",
|
||||||
"version": "3.2.8",
|
"version": "5.0.9",
|
||||||
|
"private": false,
|
||||||
"description": "offers smart ways to handle paths",
|
"description": "offers smart ways to handle paths",
|
||||||
"main": "dist/index.js",
|
"main": "dist_ts/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist_ts/index.d.ts",
|
||||||
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(npmts)"
|
"test": "(tstest test)",
|
||||||
|
"build": "(tsbuild)",
|
||||||
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@ -22,13 +26,26 @@
|
|||||||
"url": "https://github.com/pushrocks/smartpath/issues"
|
"url": "https://github.com/pushrocks/smartpath/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/pushrocks/smartpath",
|
"homepage": "https://github.com/pushrocks/smartpath",
|
||||||
"dependencies": {
|
|
||||||
"home": "^1.0.1",
|
|
||||||
"typings-global": "^1.0.14"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"npmts-g": "^6.0.0",
|
"@gitzone/tsbuild": "^2.1.56",
|
||||||
"smartchai": "^1.0.3",
|
"@gitzone/tsrun": "^1.2.31",
|
||||||
"typings-test": "^1.0.3"
|
"@gitzone/tstest": "^1.0.69",
|
||||||
}
|
"@pushrocks/tapbundle": "^5.0.2",
|
||||||
|
"@types/node": "^17.0.21"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"ts/**/*",
|
||||||
|
"ts_web/**/*",
|
||||||
|
"dist/**/*",
|
||||||
|
"dist_*/**/*",
|
||||||
|
"dist_ts/**/*",
|
||||||
|
"dist_ts_web/**/*",
|
||||||
|
"assets/**/*",
|
||||||
|
"cli.js",
|
||||||
|
"npmextra.json",
|
||||||
|
"readme.md"
|
||||||
|
],
|
||||||
|
"browserslist": [
|
||||||
|
"last 1 chrome versions"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
3429
pnpm-lock.yaml
generated
Normal file
3429
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
43
readme.md
Normal file
43
readme.md
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
# @push.rocks/smartpath
|
||||||
|
offers smart ways to handle paths
|
||||||
|
|
||||||
|
## Availabililty and Links
|
||||||
|
* [npmjs.org (npm package)](https://www.npmjs.com/package/@push.rocks/smartpath)
|
||||||
|
* [gitlab.com (source)](https://gitlab.com/push.rocks/smartpath)
|
||||||
|
* [github.com (source mirror)](https://github.com/push.rocks/smartpath)
|
||||||
|
* [docs (typedoc)](https://push.rocks.gitlab.io/smartpath/)
|
||||||
|
|
||||||
|
## Status for master
|
||||||
|
|
||||||
|
Status Category | Status Badge
|
||||||
|
-- | --
|
||||||
|
GitLab Pipelines | [](https://lossless.cloud)
|
||||||
|
GitLab Pipline Test Coverage | [](https://lossless.cloud)
|
||||||
|
npm | [](https://lossless.cloud)
|
||||||
|
Snyk | [](https://lossless.cloud)
|
||||||
|
TypeScript Support | [](https://lossless.cloud)
|
||||||
|
node Support | [](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
|
Code Style | [](https://lossless.cloud)
|
||||||
|
PackagePhobia (total standalone install weight) | [](https://lossless.cloud)
|
||||||
|
PackagePhobia (package size on registry) | [](https://lossless.cloud)
|
||||||
|
BundlePhobia (total size when bundled) | [](https://lossless.cloud)
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Use TypeScript for best in class instellisense.
|
||||||
|
|
||||||
|
For further information read the linked docs at the top of this README.
|
||||||
|
|
||||||
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
|
|
||||||
|
[](https://push.rocks)
|
||||||
|
|
||||||
|
## Contribution
|
||||||
|
|
||||||
|
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
|
||||||
|
|
||||||
|
For further information read the linked docs at the top of this readme.
|
||||||
|
|
||||||
|
## Legal
|
||||||
|
> MIT licensed | **©** [Task Venture Capital GmbH](https://task.vc)
|
||||||
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
1
test/test.d.ts
vendored
1
test/test.d.ts
vendored
@ -1 +0,0 @@
|
|||||||
import 'typings-test';
|
|
76
test/test.js
76
test/test.js
@ -1,76 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
require("typings-test");
|
|
||||||
const smartchai_1 = require("smartchai");
|
|
||||||
const smartpath = require("../dist/index.js");
|
|
||||||
describe('smartpath', function () {
|
|
||||||
describe('class Smartpath', function () {
|
|
||||||
let mySmartpath;
|
|
||||||
it('expect create a valid instance', function () {
|
|
||||||
mySmartpath = new smartpath.Smartpath('/some/path/to/some.file');
|
|
||||||
smartchai_1.expect(mySmartpath).to.be.instanceof(smartpath.Smartpath);
|
|
||||||
smartchai_1.expect(mySmartpath.pathLevelsBackwards).to.be.of.length(5);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.check', function () {
|
|
||||||
let filePathString = './somedir/somefile.json';
|
|
||||||
let dirPathString = './somedir/anotherdir';
|
|
||||||
let dirPathString2 = './somedir/another.dir/';
|
|
||||||
describe('.isFile', function () {
|
|
||||||
it('expect be true for a file path', function () {
|
|
||||||
smartchai_1.expect(smartpath.check.isFile(filePathString)).to.be.true;
|
|
||||||
});
|
|
||||||
it('expect be false for a directory path', function () {
|
|
||||||
smartchai_1.expect(smartpath.check.isFile(dirPathString)).to.be.false;
|
|
||||||
smartchai_1.expect(smartpath.check.isFile(dirPathString2)).to.be.false;
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.isDir', function () {
|
|
||||||
it('expect be true for a directory path', function () {
|
|
||||||
smartchai_1.expect(smartpath.check.isDir(dirPathString)).to.be.true;
|
|
||||||
smartchai_1.expect(smartpath.check.isDir(dirPathString2)).to.be.true;
|
|
||||||
});
|
|
||||||
it('expect be false for a file path', function () {
|
|
||||||
smartchai_1.expect(smartpath.check.isDir(filePathString)).to.be.false;
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.transform', function () {
|
|
||||||
describe('toAbsolute()', function () {
|
|
||||||
let baseString = '/basedir';
|
|
||||||
let relativeString = 'somedir/somefile.txt';
|
|
||||||
let relativeString2 = 'anotherdir/anotherfile.txt';
|
|
||||||
let relativeArray = [relativeString, relativeString, relativeString2];
|
|
||||||
it('expect make a string absolute', function () {
|
|
||||||
smartchai_1.expect(smartpath.transform.toAbsolute(relativeString)).startWith('/');
|
|
||||||
smartchai_1.expect(smartpath.transform.toAbsolute(relativeString)).endWith(relativeString);
|
|
||||||
smartchai_1.expect(smartpath.transform.toAbsolute(relativeString, baseString)).equal('/basedir/somedir/somefile.txt');
|
|
||||||
});
|
|
||||||
it('expect make an array of relative Strings an Array of absolute Strings', function () {
|
|
||||||
let absoluteArray = smartpath.transform.toAbsolute(relativeArray, baseString);
|
|
||||||
smartchai_1.expect(absoluteArray[2]).to.startWith('/');
|
|
||||||
smartchai_1.expect(absoluteArray[2]).endWith(relativeString2);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.get', function () {
|
|
||||||
describe('.type()', function () {
|
|
||||||
it("expect return 'url' for an URL", function () {
|
|
||||||
smartchai_1.expect(smartpath.get.type('https://push.rocks/some/url')).equal('url');
|
|
||||||
smartchai_1.expect(smartpath.get.type('https://push.rocks/some/url')).not.equal('local');
|
|
||||||
});
|
|
||||||
it("expect return 'path' for a Path", function () {
|
|
||||||
smartchai_1.expect(smartpath.get.type('/some/absolute/path/')).equal('local');
|
|
||||||
smartchai_1.expect(smartpath.get.type('./some/relative/path/')).not.equal('url');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.get()', function () {
|
|
||||||
it('expect a absolute path for an home relative URL', function () {
|
|
||||||
console.log(smartpath.get.home('~/test'));
|
|
||||||
});
|
|
||||||
it('expect return the home directory path when no argument is specified', function () {
|
|
||||||
console.log(smartpath.get.home());
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbInRlc3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLHdCQUFxQjtBQUNyQix5Q0FBa0M7QUFDbEMsOENBQTZDO0FBRTdDLFFBQVEsQ0FBQyxXQUFXLEVBQUU7SUFDcEIsUUFBUSxDQUFDLGlCQUFpQixFQUFFO1FBQzFCLElBQUksV0FBZ0MsQ0FBQTtRQUNwQyxFQUFFLENBQUMsZ0NBQWdDLEVBQUU7WUFDbkMsV0FBVyxHQUFHLElBQUksU0FBUyxDQUFDLFNBQVMsQ0FBQyx5QkFBeUIsQ0FBQyxDQUFBO1lBQ2hFLGtCQUFNLENBQUMsV0FBVyxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxVQUFVLENBQUMsU0FBUyxDQUFDLFNBQVMsQ0FBQyxDQUFBO1lBQ3pELGtCQUFNLENBQUMsV0FBVyxDQUFDLG1CQUFtQixDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxDQUFBO1FBQzVELENBQUMsQ0FBQyxDQUFBO0lBQ0osQ0FBQyxDQUFDLENBQUE7SUFDRixRQUFRLENBQUMsUUFBUSxFQUFFO1FBQ2pCLElBQUksY0FBYyxHQUFHLHlCQUF5QixDQUFBO1FBQzlDLElBQUksYUFBYSxHQUFHLHNCQUFzQixDQUFBO1FBQzFDLElBQUksY0FBYyxHQUFHLHdCQUF3QixDQUFBO1FBQzdDLFFBQVEsQ0FBQyxTQUFTLEVBQUU7WUFDbEIsRUFBRSxDQUFDLGdDQUFnQyxFQUFFO2dCQUNuQyxrQkFBTSxDQUNKLFNBQVMsQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLGNBQWMsQ0FBQyxDQUN2QyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsSUFBSSxDQUFBO1lBQ2QsQ0FBQyxDQUFDLENBQUE7WUFDRixFQUFFLENBQUMsc0NBQXNDLEVBQUU7Z0JBQ3pDLGtCQUFNLENBQ0osU0FBUyxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsYUFBYSxDQUFD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
|
|
@ -1 +0,0 @@
|
|||||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["test.ts"],"names":[],"mappings":"AAAA,gDAAgD;AAChD,IAAI,MAAM,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;AAC/B,IAAI,SAAS,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAAC;AAE5C,QAAQ,CAAC,WAAW,EAAC;IACjB,QAAQ,CAAC,YAAY,EAAC;QAClB,QAAQ,CAAC,cAAc,EAAC;YACpB,IAAI,UAAU,GAAG,UAAU,CAAC;YAC5B,IAAI,cAAc,GAAG,sBAAsB,CAAC;YAC5C,IAAI,eAAe,GAAG,4BAA4B,CAAC;YACnD,IAAI,aAAa,GAAG,CAAC,cAAc,EAAC,cAAc,EAAC,eAAe,CAAC,CAAC;YACpE,EAAE,CAAC,+BAA+B,EAAC;gBAC/B,SAAS,CAAC,SAAS,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;gBACrE,SAAS,CAAC,SAAS,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;gBAC9E,SAAS,CAAC,SAAS,CAAC,UAAU,CAAC,cAAc,EAAC,UAAU,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,+BAA+B,CAAC,CAAC;YAC5G,CAAC,CAAC,CAAC;YACH,EAAE,CAAC,uEAAuE,EAAC;gBACvE,IAAI,aAAa,GAAG,SAAS,CAAC,SAAS,CAAC,UAAU,CAAC,aAAa,EAAC,UAAU,CAAC,CAAC;gBAC7E,aAAa,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;gBACvC,aAAa,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC;YAErD,CAAC,CAAC,CAAA;YACF,EAAE,CAAC,iDAAiD,EAAC;gBACjD,SAAS,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC;YACxD,CAAC,CAAC,CAAC;QACP,CAAC,CAAC,CAAC;IACP,CAAC,CAAC,CAAC;IACH,QAAQ,CAAC,MAAM,EAAC;QACZ,QAAQ,CAAC,SAAS,EAAC;YACf,EAAE,CAAC,gCAAgC,EAAC;gBAChC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,6BAA6B,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;gBACtE,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,6BAA6B,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;YAChF,CAAC,CAAC,CAAC;YACH,EAAE,CAAC,iCAAiC,EAAC;gBACjC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;gBACjE,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YACxE,CAAC,CAAC,CAAC;QACP,CAAC,CAAC,CAAC;QACH,QAAQ,CAAC,QAAQ,EAAC;YACd,EAAE,CAAC,iDAAiD,EAAC;gBACjD,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;YAC9C,CAAC,CAAC,CAAC;YACH,EAAE,CAAC,qEAAqE,EAAC;gBACrE,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC;YACtC,CAAC,CAAC,CAAC;QACP,CAAC,CAAC,CAAC;IACP,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC"}
|
|
146
test/test.ts
146
test/test.ts
@ -1,92 +1,66 @@
|
|||||||
import 'typings-test'
|
import { tap, expect, expectAsync } from '@pushrocks/tapbundle';
|
||||||
import { expect } from 'smartchai'
|
import * as smartpath from '../ts/index.js';
|
||||||
import * as smartpath from '../dist/index.js'
|
|
||||||
|
|
||||||
describe('smartpath', function () {
|
let mySmartpath: smartpath.Smartpath;
|
||||||
describe('class Smartpath', function () {
|
tap.test('expect create a valid instance', async () => {
|
||||||
let mySmartpath: smartpath.Smartpath
|
mySmartpath = new smartpath.Smartpath('/some/path/to/some.file');
|
||||||
it('expect create a valid instance', function () {
|
expect(mySmartpath).toBeInstanceOf(smartpath.Smartpath);
|
||||||
mySmartpath = new smartpath.Smartpath('/some/path/to/some.file')
|
expect(mySmartpath.pathLevelsBackwards.length === 5).toBeTrue();
|
||||||
expect(mySmartpath).to.be.instanceof(smartpath.Smartpath)
|
});
|
||||||
expect(mySmartpath.pathLevelsBackwards).to.be.of.length(5)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
describe('.check', function () {
|
|
||||||
let filePathString = './somedir/somefile.json'
|
|
||||||
let dirPathString = './somedir/anotherdir'
|
|
||||||
let dirPathString2 = './somedir/another.dir/'
|
|
||||||
describe('.isFile', function () {
|
|
||||||
it('expect be true for a file path', function () {
|
|
||||||
expect(
|
|
||||||
smartpath.check.isFile(filePathString)
|
|
||||||
).to.be.true
|
|
||||||
})
|
|
||||||
it('expect be false for a directory path', function () {
|
|
||||||
expect(
|
|
||||||
smartpath.check.isFile(dirPathString)
|
|
||||||
).to.be.false
|
|
||||||
expect(
|
|
||||||
smartpath.check.isFile(dirPathString2)
|
|
||||||
).to.be.false
|
|
||||||
})
|
|
||||||
})
|
|
||||||
describe('.isDir', function () {
|
|
||||||
it('expect be true for a directory path', function () {
|
|
||||||
|
|
||||||
expect(
|
let filePathString = './somedir/somefile.json';
|
||||||
smartpath.check.isDir(dirPathString)
|
let dirPathString = './somedir/anotherdir';
|
||||||
).to.be.true
|
let dirPathString2 = './somedir/another.dir/';
|
||||||
|
|
||||||
expect(
|
tap.test('expect be true for a file path', async () => {
|
||||||
smartpath.check.isDir(dirPathString2)
|
expect(smartpath.check.isFile(filePathString)).toBeTrue();
|
||||||
).to.be.true
|
});
|
||||||
|
tap.test('expect be false for a directory path', async () => {
|
||||||
|
expect(smartpath.check.isFile(dirPathString)).toBeFalse();
|
||||||
|
expect(smartpath.check.isFile(dirPathString2)).toBeFalse();
|
||||||
|
});
|
||||||
|
|
||||||
})
|
tap.test('expect be true for a directory path', async () => {
|
||||||
|
expect(smartpath.check.isDir(dirPathString)).toBeTrue();
|
||||||
|
|
||||||
it('expect be false for a file path', function () {
|
expect(smartpath.check.isDir(dirPathString2)).toBeTrue();
|
||||||
expect(
|
});
|
||||||
smartpath.check.isDir(filePathString)
|
|
||||||
).to.be.false
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
describe('.transform', function () {
|
|
||||||
describe('toAbsolute()', function () {
|
|
||||||
let baseString = '/basedir'
|
|
||||||
let relativeString = 'somedir/somefile.txt'
|
|
||||||
let relativeString2 = 'anotherdir/anotherfile.txt'
|
|
||||||
let relativeArray = [ relativeString, relativeString, relativeString2 ]
|
|
||||||
it('expect make a string absolute', function () {
|
|
||||||
expect(smartpath.transform.toAbsolute(relativeString)).startWith('/')
|
|
||||||
expect(smartpath.transform.toAbsolute(relativeString)).endWith(relativeString)
|
|
||||||
expect(smartpath.transform.toAbsolute(relativeString, baseString)).equal('/basedir/somedir/somefile.txt')
|
|
||||||
})
|
|
||||||
it('expect make an array of relative Strings an Array of absolute Strings', function () {
|
|
||||||
let absoluteArray = smartpath.transform.toAbsolute(relativeArray, baseString)
|
|
||||||
expect(absoluteArray[ 2 ]).to.startWith('/')
|
|
||||||
expect(absoluteArray[ 2 ]).endWith(relativeString2)
|
|
||||||
|
|
||||||
})
|
tap.test('expect be false for a file path', async () => {
|
||||||
})
|
expect(smartpath.check.isDir(filePathString)).toBeFalse();
|
||||||
})
|
});
|
||||||
describe('.get', function () {
|
|
||||||
describe('.type()', function () {
|
let baseString = '/basedir';
|
||||||
it("expect return 'url' for an URL", function () {
|
let relativeString = 'somedir/somefile.txt';
|
||||||
expect(smartpath.get.type('https://push.rocks/some/url')).equal('url')
|
let relativeString2 = 'anotherdir/anotherfile.txt';
|
||||||
expect(smartpath.get.type('https://push.rocks/some/url')).not.equal('local')
|
let relativeArray = [relativeString, relativeString, relativeString2];
|
||||||
})
|
tap.test('expect make a string absolute', async () => {
|
||||||
it("expect return 'path' for a Path", function () {
|
expect(smartpath.transform.toAbsolute(relativeString)).toStartWith('/');
|
||||||
expect(smartpath.get.type('/some/absolute/path/')).equal('local')
|
expect(smartpath.transform.toAbsolute(relativeString)).toEndWith(relativeString);
|
||||||
expect(smartpath.get.type('./some/relative/path/')).not.equal('url')
|
expect(smartpath.transform.toAbsolute(relativeString, baseString)).toEqual(
|
||||||
})
|
'/basedir/somedir/somefile.txt'
|
||||||
})
|
);
|
||||||
describe('.get()', function () {
|
});
|
||||||
it('expect a absolute path for an home relative URL', function () {
|
tap.test('expect make an array of relative Strings an Array of absolute Strings', async () => {
|
||||||
console.log(smartpath.get.home('~/test'))
|
let absoluteArray = smartpath.transform.toAbsolute(relativeArray, baseString);
|
||||||
})
|
expect(absoluteArray[2]).toStartWith('/');
|
||||||
it('expect return the home directory path when no argument is specified', function () {
|
expect(absoluteArray[2]).toEndWith(relativeString2);
|
||||||
console.log(smartpath.get.home())
|
});
|
||||||
})
|
|
||||||
})
|
tap.test("expect return 'url' for an URL", async () => {
|
||||||
})
|
expect(smartpath.get.type('https://push.rocks/some/url')).toEqual('url');
|
||||||
})
|
expect(smartpath.get.type('https://push.rocks/some/url')).not.toEqual('local');
|
||||||
|
});
|
||||||
|
tap.test("expect return 'path' for a Path", async () => {
|
||||||
|
expect(smartpath.get.type('/some/absolute/path/')).toEqual('local');
|
||||||
|
expect(smartpath.get.type('./some/relative/path/')).not.toEqual('url');
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('expect a absolute path for an home relative URL', async () => {
|
||||||
|
console.log(smartpath.get.home('~/test'));
|
||||||
|
});
|
||||||
|
tap.test('expect return the home directory path when no argument is specified', async () => {
|
||||||
|
console.log(smartpath.get.home());
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.start();
|
||||||
|
8
ts/00_commitinfo_data.ts
Normal file
8
ts/00_commitinfo_data.ts
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
/**
|
||||||
|
* autocreated commitinfo by @pushrocks/commitinfo
|
||||||
|
*/
|
||||||
|
export const commitinfo = {
|
||||||
|
name: '@push.rocks/smartpath',
|
||||||
|
version: '5.0.9',
|
||||||
|
description: 'offers smart ways to handle paths'
|
||||||
|
}
|
15
ts/index.ts
15
ts/index.ts
@ -1,13 +1,8 @@
|
|||||||
// import modules
|
// import modules
|
||||||
import * as check from './smartpath.check'
|
import * as check from './smartpath.check.js';
|
||||||
import * as get from './smartpath.get'
|
import * as get from './smartpath.get.js';
|
||||||
import * as transform from './smartpath.transform'
|
import * as transform from './smartpath.transform.js';
|
||||||
|
|
||||||
|
export { check, get, transform };
|
||||||
|
|
||||||
export {
|
export * from './smartpath.classes.smartpath.js';
|
||||||
check,
|
|
||||||
get,
|
|
||||||
transform
|
|
||||||
}
|
|
||||||
|
|
||||||
export * from './smartpath.classes.smartpath'
|
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
import 'typings-global'
|
import * as plugins from './smartpath.plugins.js';
|
||||||
import plugins = require('./smartpath.plugins')
|
|
||||||
|
|
||||||
export let isDir = function (pathArg: string) {
|
export let isDir = function (pathArg: string) {
|
||||||
return !isFile(pathArg)
|
return !isFile(pathArg);
|
||||||
}
|
};
|
||||||
|
|
||||||
export let isFile = function (pathArg) {
|
export let isFile = function (pathArg) {
|
||||||
return /\.[a-zA-Z]*$/.test(pathArg) // checks if there is a .anything at the end
|
return /\.[a-zA-Z]*$/.test(pathArg); // checks if there is a .anything at the end
|
||||||
}
|
};
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
import * as plugins from './smartpath.plugins'
|
import * as plugins from './smartpath.plugins.js';
|
||||||
import * as getMod from './smartpath.get'
|
import * as getMod from './smartpath.get.js';
|
||||||
|
|
||||||
export class Smartpath {
|
export class Smartpath {
|
||||||
originalPath: string
|
originalPath: string;
|
||||||
type: getMod.TPathType
|
type: getMod.TPathType;
|
||||||
pathLevels: string[]
|
pathLevels: string[];
|
||||||
pathLevelsBackwards: string[]
|
pathLevelsBackwards: string[];
|
||||||
constructor(pathArg: string) {
|
constructor(pathArg: string) {
|
||||||
this.originalPath = pathArg
|
this.originalPath = pathArg;
|
||||||
this.type = getMod.type(this.originalPath)
|
this.type = getMod.type(this.originalPath);
|
||||||
this.pathLevels = getMod.pathLevels(this.originalPath)
|
this.pathLevels = getMod.pathLevels(this.originalPath);
|
||||||
this.pathLevelsBackwards = getMod.pathLevelsBackwards(this.originalPath)
|
this.pathLevelsBackwards = getMod.pathLevelsBackwards(this.originalPath);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,36 +1,48 @@
|
|||||||
import plugins = require('./smartpath.plugins')
|
import * as plugins from './smartpath.plugins.js';
|
||||||
export type TPathType = 'url' | 'local'
|
export type TPathType = 'url' | 'local';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* returns the type of the given path. Can be "url" or "local"
|
* returns the type of the given path. Can be "url" or "local"
|
||||||
*/
|
*/
|
||||||
export let type = function (pathStringArg: string): TPathType {
|
export const type = (pathStringArg: string): TPathType => {
|
||||||
let urlRegex = /http[s|\s]:\/\/.*/i
|
const urlRegex = /http[s|\s]:\/\/.*/i;
|
||||||
if (urlRegex.exec(pathStringArg)) {
|
if (urlRegex.exec(pathStringArg)) {
|
||||||
return 'url'
|
return 'url';
|
||||||
} else {
|
} else {
|
||||||
return 'local'
|
return 'local';
|
||||||
};
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
export let home = function (pathArgument?: string) {
|
/**
|
||||||
if (pathArgument) {
|
* gets the dirname from import.meta.url
|
||||||
return plugins.home.resolve(pathArgument)
|
*/
|
||||||
} else {
|
export const dirnameFromImportMetaUrl = (importMetaUrlArg: string) => {
|
||||||
return plugins.home()
|
return plugins.path.dirname(plugins.url.fileURLToPath(importMetaUrlArg));
|
||||||
}
|
};
|
||||||
}
|
|
||||||
|
|
||||||
export type TSystemArg = 'dynamic' | 'windows' | 'linux' | 'osx'
|
/**
|
||||||
|
* returns homedir as absolute path
|
||||||
|
* @param pathArgument if a pathargument is given, ~ is being replaced with the homedir
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export const home = (pathArgument?: string) => {
|
||||||
|
if (pathArgument) {
|
||||||
|
return pathArgument.replace('~', plugins.os.homedir());
|
||||||
|
} else {
|
||||||
|
return plugins.os.homedir();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
export let pathLevels = (pathArg: string, systemArg: TSystemArg = 'dynamic') => {
|
export type TSystemArg = 'dynamic' | 'windows' | 'linux' | 'osx';
|
||||||
let pathLevelArray: string[]
|
|
||||||
if (systemArg === 'dynamic') {
|
|
||||||
pathLevelArray = pathArg.split(plugins.path.sep)
|
|
||||||
}
|
|
||||||
return pathLevelArray
|
|
||||||
}
|
|
||||||
|
|
||||||
export let pathLevelsBackwards = (pathArg: string, systemArg?: TSystemArg) => {
|
export const pathLevels = (pathArg: string, systemArg: TSystemArg = 'dynamic') => {
|
||||||
return pathLevels(pathArg, systemArg).reverse()
|
let pathLevelArray: string[];
|
||||||
}
|
if (systemArg === 'dynamic') {
|
||||||
|
pathLevelArray = pathArg.split(plugins.path.sep);
|
||||||
|
}
|
||||||
|
return pathLevelArray;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const pathLevelsBackwards = (pathArg: string, systemArg?: TSystemArg) => {
|
||||||
|
return pathLevels(pathArg, systemArg).reverse();
|
||||||
|
};
|
||||||
|
@ -1,8 +1,5 @@
|
|||||||
import 'typings-global'
|
import * as os from 'os';
|
||||||
let home = require('home')
|
import * as path from 'path';
|
||||||
import * as path from 'path'
|
import * as url from 'url';
|
||||||
|
|
||||||
export {
|
export { os, path, url };
|
||||||
home,
|
|
||||||
path
|
|
||||||
}
|
|
||||||
|
@ -1,40 +1,41 @@
|
|||||||
import 'typings-global'
|
import * as plugins from './smartpath.plugins.js';
|
||||||
import plugins = require('./smartpath.plugins')
|
|
||||||
|
|
||||||
/* ------------------------------------------ *
|
/* ------------------------------------------ *
|
||||||
* ------------ helpers --------------------- *
|
* ------------ helpers --------------------- *
|
||||||
* ------------------------------------------ */
|
* ------------------------------------------ */
|
||||||
|
|
||||||
// checks a file
|
// checks a file
|
||||||
let makeAbsolute = function(localPathArg: string, baseArg?: string): string {
|
export const makeAbsolute = (localPathArg: string, baseArg?: string): string => {
|
||||||
let absolutePath: string
|
let absolutePath: string;
|
||||||
let alreadyAbsolute = plugins.path.isAbsolute(localPathArg)
|
let alreadyAbsolute = plugins.path.isAbsolute(localPathArg);
|
||||||
if (baseArg && !alreadyAbsolute) {
|
if (baseArg && !alreadyAbsolute) {
|
||||||
absolutePath = plugins.path.join(baseArg,localPathArg)
|
absolutePath = plugins.path.join(baseArg, localPathArg);
|
||||||
} else if (!alreadyAbsolute) {
|
} else if (!alreadyAbsolute) {
|
||||||
absolutePath = plugins.path.resolve(localPathArg)
|
absolutePath = plugins.path.resolve(localPathArg);
|
||||||
} else {
|
} else {
|
||||||
absolutePath = localPathArg
|
absolutePath = localPathArg;
|
||||||
}
|
}
|
||||||
return absolutePath
|
return absolutePath;
|
||||||
}
|
};
|
||||||
|
|
||||||
/* ------------------------------------------ *
|
/* ------------------------------------------ *
|
||||||
* ------- export functions ----------------- *
|
* ------- export functions ----------------- *
|
||||||
* ------------------------------------------ */
|
* ------------------------------------------ */
|
||||||
export let toAbsolute = function(relativeArg: string | string[], baseArg?: string): any {
|
export const toAbsolute = (relativeArg: string | string[], baseArg?: string): string | string[] => {
|
||||||
if (typeof relativeArg === 'string') {
|
if (typeof relativeArg === 'string') {
|
||||||
return makeAbsolute(relativeArg,baseArg)
|
return makeAbsolute(relativeArg, baseArg);
|
||||||
} else if (Array.isArray(relativeArg)) {
|
} else if (Array.isArray(relativeArg)) {
|
||||||
let relativeArray = relativeArg
|
let relativeArray = relativeArg;
|
||||||
let absoluteArray: string[] = []
|
let absoluteArray: string[] = [];
|
||||||
for (let key in relativeArray) {
|
for (let key in relativeArray) {
|
||||||
absoluteArray.push(makeAbsolute(relativeArray[key],baseArg))
|
absoluteArray.push(makeAbsolute(relativeArray[key], baseArg));
|
||||||
}
|
|
||||||
return absoluteArray
|
|
||||||
} else {
|
|
||||||
console.error('smartpath.absolute() could not make sense of the input. ' +
|
|
||||||
'Input is neither String nor Array')
|
|
||||||
return false
|
|
||||||
}
|
}
|
||||||
}
|
return absoluteArray;
|
||||||
|
} else {
|
||||||
|
console.error(
|
||||||
|
'smartpath.absolute() could not make sense of the input. ' +
|
||||||
|
'Input is neither String nor Array'
|
||||||
|
);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "tslint-config-standard"
|
|
||||||
}
|
|
209
yarn.lock
209
yarn.lock
@ -1,209 +0,0 @@
|
|||||||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
# yarn lockfile v1
|
|
||||||
|
|
||||||
|
|
||||||
"@types/chai-as-promised@0.0.29":
|
|
||||||
version "0.0.29"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/chai-as-promised/-/chai-as-promised-0.0.29.tgz#43d52892aa998e185a3de3e2477edb8573be1d77"
|
|
||||||
dependencies:
|
|
||||||
"@types/chai" "*"
|
|
||||||
"@types/promises-a-plus" "*"
|
|
||||||
|
|
||||||
"@types/chai-string@^1.1.30":
|
|
||||||
version "1.1.30"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/chai-string/-/chai-string-1.1.30.tgz#4d8744b31a5a2295fc01c981ed1e2d4c8a070f0a"
|
|
||||||
dependencies:
|
|
||||||
"@types/chai" "*"
|
|
||||||
|
|
||||||
"@types/chai@*", "@types/chai@^3.4.35":
|
|
||||||
version "3.4.35"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-3.4.35.tgz#e8d65f83492d2944f816fc620741821c28a8c900"
|
|
||||||
|
|
||||||
"@types/mocha@^2.2.31":
|
|
||||||
version "2.2.39"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-2.2.39.tgz#f68d63db8b69c38e9558b4073525cf96c4f7a829"
|
|
||||||
|
|
||||||
"@types/node@*":
|
|
||||||
version "7.0.5"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-7.0.5.tgz#96a0f0a618b7b606f1ec547403c00650210bfbb7"
|
|
||||||
|
|
||||||
"@types/promises-a-plus@*":
|
|
||||||
version "0.0.27"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/promises-a-plus/-/promises-a-plus-0.0.27.tgz#c64651134614c84b8f5d7114ce8901d36a609780"
|
|
||||||
|
|
||||||
"@types/shelljs@^0.3.33":
|
|
||||||
version "0.3.33"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/shelljs/-/shelljs-0.3.33.tgz#df613bddb88225ed09ce5c835f620dcaaf155e6b"
|
|
||||||
dependencies:
|
|
||||||
"@types/node" "*"
|
|
||||||
|
|
||||||
assertion-error@^1.0.1:
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c"
|
|
||||||
|
|
||||||
balanced-match@^0.4.1:
|
|
||||||
version "0.4.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
|
|
||||||
|
|
||||||
brace-expansion@^1.0.0:
|
|
||||||
version "1.1.6"
|
|
||||||
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9"
|
|
||||||
dependencies:
|
|
||||||
balanced-match "^0.4.1"
|
|
||||||
concat-map "0.0.1"
|
|
||||||
|
|
||||||
chai-as-promised@^6.0.0:
|
|
||||||
version "6.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/chai-as-promised/-/chai-as-promised-6.0.0.tgz#1a02a433a6f24dafac63b9c96fa1684db1aa8da6"
|
|
||||||
dependencies:
|
|
||||||
check-error "^1.0.2"
|
|
||||||
|
|
||||||
chai-string@^1.3.0:
|
|
||||||
version "1.3.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/chai-string/-/chai-string-1.3.0.tgz#df6139f294391b1035be5606f60a843b3a5041e7"
|
|
||||||
|
|
||||||
chai@^3.5.0:
|
|
||||||
version "3.5.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247"
|
|
||||||
dependencies:
|
|
||||||
assertion-error "^1.0.1"
|
|
||||||
deep-eql "^0.1.3"
|
|
||||||
type-detect "^1.0.0"
|
|
||||||
|
|
||||||
check-error@^1.0.2:
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82"
|
|
||||||
|
|
||||||
concat-map@0.0.1:
|
|
||||||
version "0.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
|
|
||||||
|
|
||||||
deep-eql@^0.1.3:
|
|
||||||
version "0.1.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2"
|
|
||||||
dependencies:
|
|
||||||
type-detect "0.1.1"
|
|
||||||
|
|
||||||
fs.realpath@^1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
|
||||||
|
|
||||||
glob@^7.0.0:
|
|
||||||
version "7.1.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
|
|
||||||
dependencies:
|
|
||||||
fs.realpath "^1.0.0"
|
|
||||||
inflight "^1.0.4"
|
|
||||||
inherits "2"
|
|
||||||
minimatch "^3.0.2"
|
|
||||||
once "^1.3.0"
|
|
||||||
path-is-absolute "^1.0.0"
|
|
||||||
|
|
||||||
home@^1.0.1:
|
|
||||||
version "1.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/home/-/home-1.0.1.tgz#96a423ceb49b98378ff5ef3ceae059a557f9dd35"
|
|
||||||
dependencies:
|
|
||||||
os-homedir "^1.0.1"
|
|
||||||
|
|
||||||
inflight@^1.0.4:
|
|
||||||
version "1.0.6"
|
|
||||||
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
|
|
||||||
dependencies:
|
|
||||||
once "^1.3.0"
|
|
||||||
wrappy "1"
|
|
||||||
|
|
||||||
inherits@2:
|
|
||||||
version "2.0.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
|
||||||
|
|
||||||
interpret@^1.0.0:
|
|
||||||
version "1.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c"
|
|
||||||
|
|
||||||
minimatch@^3.0.2:
|
|
||||||
version "3.0.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
|
|
||||||
dependencies:
|
|
||||||
brace-expansion "^1.0.0"
|
|
||||||
|
|
||||||
npmts-g@^6.0.0:
|
|
||||||
version "6.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/npmts-g/-/npmts-g-6.0.0.tgz#491fd50f110967f1b68f14237e7ea5157bf4ddb3"
|
|
||||||
dependencies:
|
|
||||||
"@types/shelljs" "^0.3.33"
|
|
||||||
semver "^5.3.0"
|
|
||||||
shelljs "^0.7.5"
|
|
||||||
typings-global "^1.0.14"
|
|
||||||
|
|
||||||
once@^1.3.0:
|
|
||||||
version "1.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
|
|
||||||
dependencies:
|
|
||||||
wrappy "1"
|
|
||||||
|
|
||||||
os-homedir@^1.0.1:
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
|
|
||||||
|
|
||||||
path-is-absolute@^1.0.0:
|
|
||||||
version "1.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
|
||||||
|
|
||||||
rechoir@^0.6.2:
|
|
||||||
version "0.6.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
|
|
||||||
dependencies:
|
|
||||||
resolve "^1.1.6"
|
|
||||||
|
|
||||||
resolve@^1.1.6:
|
|
||||||
version "1.2.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c"
|
|
||||||
|
|
||||||
semver@^5.3.0:
|
|
||||||
version "5.3.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
|
|
||||||
|
|
||||||
shelljs@^0.7.4, shelljs@^0.7.5:
|
|
||||||
version "0.7.6"
|
|
||||||
resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.6.tgz#379cccfb56b91c8601e4793356eb5382924de9ad"
|
|
||||||
dependencies:
|
|
||||||
glob "^7.0.0"
|
|
||||||
interpret "^1.0.0"
|
|
||||||
rechoir "^0.6.2"
|
|
||||||
|
|
||||||
smartchai@^1.0.3:
|
|
||||||
version "1.0.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/smartchai/-/smartchai-1.0.3.tgz#de6d010bb8b5aef24cb70b31a5f5334e8c41b72f"
|
|
||||||
dependencies:
|
|
||||||
"@types/chai" "^3.4.35"
|
|
||||||
"@types/chai-as-promised" "0.0.29"
|
|
||||||
"@types/chai-string" "^1.1.30"
|
|
||||||
chai "^3.5.0"
|
|
||||||
chai-as-promised "^6.0.0"
|
|
||||||
chai-string "^1.3.0"
|
|
||||||
|
|
||||||
type-detect@0.1.1:
|
|
||||||
version "0.1.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822"
|
|
||||||
|
|
||||||
type-detect@^1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2"
|
|
||||||
|
|
||||||
typings-global@*, typings-global@^1.0.14:
|
|
||||||
version "1.0.14"
|
|
||||||
resolved "https://registry.yarnpkg.com/typings-global/-/typings-global-1.0.14.tgz#ab682720a03d6b9278869fb5c30c30d7dc61d12c"
|
|
||||||
dependencies:
|
|
||||||
semver "^5.3.0"
|
|
||||||
shelljs "^0.7.4"
|
|
||||||
|
|
||||||
typings-test@^1.0.3:
|
|
||||||
version "1.0.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/typings-test/-/typings-test-1.0.3.tgz#fbab895eb3f0c44842e73db059f65946b971e369"
|
|
||||||
dependencies:
|
|
||||||
"@types/mocha" "^2.2.31"
|
|
||||||
typings-global "*"
|
|
||||||
|
|
||||||
wrappy@1:
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
|
Reference in New Issue
Block a user