init
This commit is contained in:
commit
b30f0075d2
17
.eslintrc.js
Normal file
17
.eslintrc.js
Normal file
@ -0,0 +1,17 @@
|
||||
module.exports = {
|
||||
env: {
|
||||
commonjs: true,
|
||||
es6: true,
|
||||
node: true
|
||||
},
|
||||
extends: [
|
||||
'@scode'
|
||||
],
|
||||
globals: {
|
||||
Atomics: 'readonly',
|
||||
SharedArrayBuffer: 'readonly'
|
||||
},
|
||||
parserOptions: {
|
||||
ecmaVersion: 2018
|
||||
}
|
||||
}
|
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
/node_modules/
|
||||
/dist/
|
23
Jenkinsfile
vendored
Normal file
23
Jenkinsfile
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
pipeline {
|
||||
agent any
|
||||
|
||||
environment {
|
||||
VERSION = VersionNumber([
|
||||
versionNumberString:
|
||||
'${BUILDS_ALL_TIME}',
|
||||
versionPrefix: '1.0.',
|
||||
worstResultForIncrement: 'SUCCESS'
|
||||
])
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Building') {
|
||||
steps {
|
||||
script {
|
||||
currentBuild.displayName = env.VERSION
|
||||
}
|
||||
sh 'yarn ci ${VERSION}'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
50
index.js
Normal file
50
index.js
Normal file
@ -0,0 +1,50 @@
|
||||
/*
|
||||
* Copyright (C) Sapphirecode - All Rights Reserved
|
||||
* Created by Timo Hocker <timo@scode.ovh>, March 2020
|
||||
*/
|
||||
|
||||
// @ts-nocheck
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* encode a string to base64
|
||||
*
|
||||
* @param {string} str string to encode
|
||||
* @param {string} encoding encoding the string is in
|
||||
* @returns {string} base64
|
||||
*/
|
||||
function to_b64 (str, encoding = 'utf-8') {
|
||||
const buf = Buffer.from (str, encoding);
|
||||
return buf.toString ('base64');
|
||||
}
|
||||
|
||||
/**
|
||||
* encode a string to utf-8
|
||||
*
|
||||
* @param {string} str string to encode
|
||||
* @param {string} encoding encoding the string is in
|
||||
* @returns {string} utf-8
|
||||
*/
|
||||
function to_utf8 (str, encoding) {
|
||||
const buf = Buffer.from (str, encoding);
|
||||
return buf.toString ('utf-8');
|
||||
}
|
||||
|
||||
/**
|
||||
* encode a string to hex
|
||||
*
|
||||
* @param {string} str string to encode
|
||||
* @param {string} encoding encoding the string is in
|
||||
* @returns {string} hex
|
||||
*/
|
||||
function to_hex (str, encoding = 'utf-8') {
|
||||
const buf = Buffer.from (str, encoding);
|
||||
return buf.toString ('hex');
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
to_b64,
|
||||
to_hex,
|
||||
to_utf8
|
||||
};
|
||||
|
26
jenkins.js
Normal file
26
jenkins.js
Normal file
@ -0,0 +1,26 @@
|
||||
/* eslint-disable no-process-exit */
|
||||
/* eslint-disable no-console */
|
||||
/* eslint-disable no-sync */
|
||||
'use strict';
|
||||
|
||||
const fs = require ('fs');
|
||||
const child_process = require ('child_process');
|
||||
|
||||
const pkg = JSON.parse (fs.readFileSync ('package.json', 'utf-8'));
|
||||
[
|
||||
,, pkg.version
|
||||
] = process.argv;
|
||||
fs.writeFileSync ('package.json', JSON.stringify (pkg, null, 2));
|
||||
|
||||
child_process.execSync ('yarn lint', { stdio: 'inherit' });
|
||||
if (typeof pkg.scripts !== 'undefined' && typeof pkg.scripts.test === 'string')
|
||||
child_process.execSync ('yarn test', { stdio: 'inherit' });
|
||||
|
||||
child_process.exec ('git log -1 | grep \'\\[no publish\\]\'')
|
||||
.addListener ('exit', (code) => {
|
||||
if (code === 0) {
|
||||
console.log ('build not marked for deployment');
|
||||
process.exit (1);
|
||||
}
|
||||
else { child_process.execSync ('yarn publish'); }
|
||||
});
|
17
package.json
Normal file
17
package.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "@scode/encoding-helper",
|
||||
"version": "1.0.0",
|
||||
"main": "index.js",
|
||||
"author": "Timo Hocker <t-hocker@web.de>",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@scode/eslint-config": "^1.2.25",
|
||||
"ava": "^3.5.0",
|
||||
"eslint": "^6.8.0",
|
||||
"nyc": "^15.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "eslint .",
|
||||
"test": "nyc ava"
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user