4 Commits

Author SHA1 Message Date
543bb4b54d 3.0.1 2022-08-07 17:55:40 +02:00
e9da16ce4d fix(core): update 2022-08-07 17:55:40 +02:00
0040d714ef 3.0.0 2022-08-07 16:45:39 +02:00
084954b210 BREAKING CHANGE(core): switch to esm 2022-08-07 16:45:38 +02:00
10 changed files with 10578 additions and 8897 deletions

View File

@@ -12,20 +12,12 @@ stages:
- release - release
- metadata - metadata
before_script:
- npm install -g @shipzone/npmci
# ==================== # ====================
# security stage # security stage
# ==================== # ====================
mirror:
stage: security
script:
- npmci git mirror
only:
- tags
tags:
- lossless
- docker
- notpriv
auditProductionDependencies: auditProductionDependencies:
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
stage: security stage: security
@@ -36,6 +28,7 @@ auditProductionDependencies:
- npmci command npm audit --audit-level=high --only=prod --production - npmci command npm audit --audit-level=high --only=prod --production
tags: tags:
- docker - docker
allow_failure: true
auditDevDependencies: auditDevDependencies:
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
@@ -96,10 +89,9 @@ codequality:
only: only:
- tags - tags
script: script:
- npmci command npm install -g tslint typescript - npmci command npm install -g typescript
- npmci npm prepare - npmci npm prepare
- npmci npm install - npmci npm install
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
tags: tags:
- lossless - lossless
- docker - docker
@@ -119,11 +111,10 @@ trigger:
pages: pages:
stage: metadata stage: metadata
script: script:
- npmci node install lts - npmci node install stable
- npmci command npm install -g @gitzone/tsdoc
- npmci npm prepare - npmci npm prepare
- npmci npm install - npmci npm install
- npmci command tsdoc - npmci command npm run buildDocs
tags: tags:
- lossless - lossless
- docker - docker

24
.vscode/launch.json vendored
View File

@@ -2,28 +2,10 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "current file", "command": "npm test",
"type": "node", "name": "Run npm test",
"request": "launch", "request": "launch",
"args": [ "type": "node-terminal"
"${relativeFile}"
],
"runtimeArgs": ["-r", "@gitzone/tsrun"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "test.ts",
"type": "node",
"request": "launch",
"args": [
"test/test.ts"
],
"runtimeArgs": ["-r", "@gitzone/tsrun"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
} }
] ]
} }

View File

@@ -8,7 +8,7 @@
"githost": "gitlab.com", "githost": "gitlab.com",
"gitscope": "pushrocks", "gitscope": "pushrocks",
"gitrepo": "smartmustache", "gitrepo": "smartmustache",
"shortDescription": "templates done right", "description": "templates done right",
"npmPackagename": "@pushrocks/smartmustache", "npmPackagename": "@pushrocks/smartmustache",
"license": "MIT" "license": "MIT"
} }

19290
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,13 +1,15 @@
{ {
"name": "@pushrocks/smartmustache", "name": "@pushrocks/smartmustache",
"version": "2.0.12", "version": "3.0.1",
"description": "templates done right", "description": "templates done right",
"private": false, "private": false,
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts", "typings": "dist_ts/index.d.ts",
"type": "module",
"scripts": { "scripts": {
"test": "(tstest test/ --web)", "test": "(tstest test/ --web)",
"build": "(tsbuild --web)" "build": "(tsbuild --web)",
"buildDocs": "tsdoc"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@@ -26,12 +28,10 @@
"handlebars": "^4.7.7" "handlebars": "^4.7.7"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.25", "@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsrun": "^1.2.12", "@gitzone/tsrun": "^1.2.37",
"@gitzone/tstest": "^1.0.54", "@gitzone/tstest": "^1.0.73",
"@pushrocks/tapbundle": "^3.2.14", "@pushrocks/tapbundle": "^5.0.4"
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

View File

@@ -39,7 +39,6 @@ const appliedString = myTlt.applyData({
// appliedString will be 'my horses are awesome!' // appliedString will be 'my horses are awesome!'
``` ```
## Contribution ## 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). :) 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). :)

View File

@@ -1,20 +1,20 @@
import { tap, expect } from '@pushrocks/tapbundle'; import { tap, expect } from '@pushrocks/tapbundle';
import * as tlt from '../ts/index'; import * as tlt from '../ts/index.js';
let testMustache: tlt.SmartMustache; let testMustache: tlt.SmartMustache;
tap.test('should create a valid instance of tlt', async () => { tap.test('should create a valid instance of tlt', async () => {
testMustache = new tlt.SmartMustache( testMustache = new tlt.SmartMustache(
'some awesome {{customString}} that is {{license}} licensed' 'some awesome {{customString}} that is {{license}} licensed'
); );
expect(testMustache).to.be.instanceOf(tlt.SmartMustache); expect(testMustache).toBeInstanceOf(tlt.SmartMustache);
}); });
tap.test('should output a valid string with some data', async () => { tap.test('should output a valid string with some data', async () => {
let appliedString = testMustache.applyData({ let appliedString = testMustache.applyData({
customString: 'horse', customString: 'horse',
license: 'MIT', license: 'MIT',
}); });
expect(appliedString).to.equal('some awesome horse that is MIT licensed'); expect(appliedString).toEqual('some awesome horse that is MIT licensed');
}); });
tap.start(); tap.start();

8
ts/00_commitinfo_data.ts Normal file
View File

@@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@pushrocks/smartmustache',
version: '3.0.1',
description: 'templates done right'
}

View File

@@ -1,4 +1,4 @@
import * as handlebars from 'handlebars'; import handlebars from 'handlebars';
/** /**
* class Tlt allows templates to be used with different sets of data * class Tlt allows templates to be used with different sets of data

View File

@@ -1,17 +0,0 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
},
"defaultSeverity": "warning"
}