Compare commits
27 Commits
Author | SHA1 | Date | |
---|---|---|---|
862a424dd4 | |||
5a3da93578 | |||
fc3b3d38aa | |||
c5f0568c66 | |||
394a13a9f3 | |||
53b5cf2b58 | |||
ca91dbc6dc | |||
e87c14f3d8 | |||
d8abd96ad4 | |||
543bb4b54d | |||
e9da16ce4d | |||
0040d714ef | |||
084954b210 | |||
1d6cc3833d | |||
034c99151d | |||
0c2b543d34 | |||
a0702190f7 | |||
dedd7135f5 | |||
f84280d330 | |||
b0a2ebe470 | |||
1ab3432325 | |||
c6a09e5f40 | |||
099d331fa7 | |||
e6f9459fc8 | |||
d25fe85fcd | |||
5ef057e31f | |||
494cb72d78 |
18
.gitignore
vendored
18
.gitignore
vendored
@ -1,4 +1,20 @@
|
||||
node_modules/
|
||||
.nogit/
|
||||
|
||||
# artifacts
|
||||
coverage/
|
||||
public/
|
||||
pages/
|
||||
|
||||
# installs
|
||||
node_modules/
|
||||
|
||||
# caches
|
||||
.yarn/
|
||||
.cache/
|
||||
.rpt2_cache
|
||||
|
||||
# builds
|
||||
dist/
|
||||
dist_*/
|
||||
|
||||
# custom
|
140
.gitlab-ci.yml
140
.gitlab-ci.yml
@ -1,126 +1,122 @@
|
||||
# gitzone standard
|
||||
image: hosttoday/ht-docker-node:npmci
|
||||
# gitzone ci_default
|
||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
|
||||
cache:
|
||||
paths:
|
||||
- .npmci_cache/
|
||||
key: "$CI_BUILD_STAGE"
|
||||
- .npmci_cache/
|
||||
key: '$CI_BUILD_STAGE'
|
||||
|
||||
stages:
|
||||
- security
|
||||
- test
|
||||
- release
|
||||
- metadata
|
||||
- security
|
||||
- test
|
||||
- release
|
||||
- metadata
|
||||
|
||||
before_script:
|
||||
- npm install -g @shipzone/npmci
|
||||
|
||||
# ====================
|
||||
# security stage
|
||||
# ====================
|
||||
mirror:
|
||||
auditProductionDependencies:
|
||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
stage: security
|
||||
script:
|
||||
- npmci git mirror
|
||||
- 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
|
||||
- notpriv
|
||||
- docker
|
||||
allow_failure: true
|
||||
|
||||
snyk:
|
||||
auditDevDependencies:
|
||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
stage: security
|
||||
script:
|
||||
- npmci command npm install -g snyk
|
||||
- npmci npm prepare
|
||||
- npmci command npm install --ignore-scripts
|
||||
- npmci command snyk test
|
||||
- npmci command npm config set registry https://registry.npmjs.org
|
||||
- npmci command npm audit --audit-level=high --only=dev
|
||||
tags:
|
||||
- docker
|
||||
- notpriv
|
||||
- docker
|
||||
allow_failure: true
|
||||
|
||||
# ====================
|
||||
# test stage
|
||||
# ====================
|
||||
testLEGACY:
|
||||
stage: test
|
||||
script:
|
||||
- npmci node install legacy
|
||||
- npmci npm install
|
||||
- npmci npm test
|
||||
coverage: /\d+.?\d+?\%\s*coverage/
|
||||
tags:
|
||||
- docker
|
||||
- notpriv
|
||||
allow_failure: true
|
||||
|
||||
testLTS:
|
||||
testStable:
|
||||
stage: test
|
||||
script:
|
||||
- npmci node install lts
|
||||
- npmci npm install
|
||||
- npmci npm test
|
||||
- npmci npm prepare
|
||||
- npmci node install stable
|
||||
- npmci npm install
|
||||
- npmci npm test
|
||||
coverage: /\d+.?\d+?\%\s*coverage/
|
||||
tags:
|
||||
- docker
|
||||
- notpriv
|
||||
|
||||
testSTABLE:
|
||||
- docker
|
||||
|
||||
testBuild:
|
||||
stage: test
|
||||
script:
|
||||
- npmci node install stable
|
||||
- npmci npm install
|
||||
- npmci npm test
|
||||
- npmci npm prepare
|
||||
- npmci node install stable
|
||||
- npmci npm install
|
||||
- npmci command npm run build
|
||||
coverage: /\d+.?\d+?\%\s*coverage/
|
||||
tags:
|
||||
- docker
|
||||
- notpriv
|
||||
- docker
|
||||
|
||||
release:
|
||||
stage: release
|
||||
script:
|
||||
- npmci node install stable
|
||||
- npmci npm publish
|
||||
- npmci node install stable
|
||||
- npmci npm publish
|
||||
only:
|
||||
- tags
|
||||
- tags
|
||||
tags:
|
||||
- docker
|
||||
- notpriv
|
||||
- lossless
|
||||
- docker
|
||||
- notpriv
|
||||
|
||||
# ====================
|
||||
# metadata stage
|
||||
# ====================
|
||||
codequality:
|
||||
stage: metadata
|
||||
image: docker:stable
|
||||
allow_failure: true
|
||||
services:
|
||||
- docker:stable-dind
|
||||
only:
|
||||
- tags
|
||||
script:
|
||||
- export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
|
||||
- docker run
|
||||
--env SOURCE_CODE="$PWD"
|
||||
--volume "$PWD":/code
|
||||
--volume /var/run/docker.sock:/var/run/docker.sock
|
||||
"registry.gitlab.com/gitlab-org/security-products/codequality:$SP_VERSION" /code
|
||||
artifacts:
|
||||
paths: [codeclimate.json]
|
||||
- npmci command npm install -g typescript
|
||||
- npmci npm prepare
|
||||
- npmci npm install
|
||||
tags:
|
||||
- docker
|
||||
- priv
|
||||
- lossless
|
||||
- docker
|
||||
- priv
|
||||
|
||||
trigger:
|
||||
stage: metadata
|
||||
script:
|
||||
- npmci trigger
|
||||
- npmci trigger
|
||||
only:
|
||||
- tags
|
||||
- tags
|
||||
tags:
|
||||
- docker
|
||||
- notpriv
|
||||
- lossless
|
||||
- docker
|
||||
- notpriv
|
||||
|
||||
pages:
|
||||
image: hosttoday/ht-docker-node:npmci
|
||||
stage: metadata
|
||||
script:
|
||||
- npmci command npm install -g typedoc typescript
|
||||
- npmci node install stable
|
||||
- npmci npm prepare
|
||||
- npmci npm install
|
||||
- npmci command typedoc --module "commonjs" --target "ES2016" --out public/ ts/
|
||||
- npmci command npm run buildDocs
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
- notpriv
|
||||
only:
|
||||
@ -128,15 +124,5 @@ pages:
|
||||
artifacts:
|
||||
expire_in: 1 week
|
||||
paths:
|
||||
- public
|
||||
allow_failure: true
|
||||
|
||||
windowsCompatibility:
|
||||
image: stefanscherer/node-windows:10-build-tools
|
||||
stage: metadata
|
||||
script:
|
||||
- npm install & npm test
|
||||
coverage: /\d+.?\d+?\%\s*coverage/
|
||||
tags:
|
||||
- windows
|
||||
- public
|
||||
allow_failure: true
|
||||
|
4
.snyk
4
.snyk
@ -1,4 +0,0 @@
|
||||
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
|
||||
version: v1.13.3
|
||||
ignore: {}
|
||||
patch: {}
|
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"]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
41
README.md
41
README.md
@ -1,41 +0,0 @@
|
||||
# tlt
|
||||
templates done right
|
||||
|
||||
## Availabililty
|
||||
[](https://www.npmjs.com/package/tlt)
|
||||
[](https://GitLab.com/pushrocks/tlt)
|
||||
[](https://github.com/pushrocks/tlt)
|
||||
[](https://pushrocks.gitlab.io/tlt/)
|
||||
|
||||
## Status for master
|
||||
[](https://GitLab.com/pushrocks/tlt/commits/master)
|
||||
[](https://GitLab.com/pushrocks/tlt/commits/master)
|
||||
[](https://www.npmjs.com/package/tlt)
|
||||
[](https://david-dm.org/pushrocks/tlt)
|
||||
[](https://www.bithound.io/github/pushrocks/tlt/master/dependencies/npm)
|
||||
[](https://www.bithound.io/github/pushrocks/tlt)
|
||||
[](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.
|
||||
|
||||
```javascript
|
||||
import { Tlt } from 'tlt'
|
||||
|
||||
let myTlt = new Tlt('my {{somePlaceholder}} are {{anotherPlaceholder}}!')
|
||||
let appliedString = myTlt.applyData({
|
||||
"somePlaceholder": "horses",
|
||||
"anotherPlaceholder": "awesome"
|
||||
})
|
||||
|
||||
// appliedString will be 'my horses are awesome!'
|
||||
```
|
||||
|
||||
For further information read the linked docs at the top of this README.
|
||||
|
||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
||||
|
||||
[](https://push.rocks)
|
@ -1,5 +1,28 @@
|
||||
{
|
||||
"npmci": {
|
||||
"npmAccessLevel": "public"
|
||||
},
|
||||
"gitzone": {
|
||||
"projectType": "npm",
|
||||
"module": {
|
||||
"githost": "code.foss.global",
|
||||
"gitscope": "push.rocks",
|
||||
"gitrepo": "smartmustache",
|
||||
"description": "A library for creating and applying templates using Handlebars.",
|
||||
"npmPackagename": "@push.rocks/smartmustache",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"templating",
|
||||
"handlebars",
|
||||
"text processing",
|
||||
"data binding",
|
||||
"code generation",
|
||||
"string interpolation",
|
||||
"dynamic content"
|
||||
]
|
||||
}
|
||||
},
|
||||
"tsdoc": {
|
||||
"legal": "\n## License and Legal Information\n\nThis repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. \n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n"
|
||||
}
|
||||
}
|
13531
package-lock.json
generated
13531
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
57
package.json
57
package.json
@ -1,34 +1,57 @@
|
||||
{
|
||||
"name": "@pushrocks/smartmustache",
|
||||
"version": "2.0.6",
|
||||
"description": "templates done right",
|
||||
"name": "@push.rocks/smartmustache",
|
||||
"version": "3.0.2",
|
||||
"description": "A library for creating and applying templates using Handlebars.",
|
||||
"private": false,
|
||||
"main": "dist/index.js",
|
||||
"typings": "dist/index.d.ts",
|
||||
"main": "dist_ts/index.js",
|
||||
"typings": "dist_ts/index.d.ts",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"test": "(tstest test/)",
|
||||
"build": "(tsbuild)"
|
||||
"test": "(tstest test/ --web)",
|
||||
"build": "(tsbuild --web)",
|
||||
"buildDocs": "tsdoc"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@gitlab.com/pushrocks/tlt.git"
|
||||
"url": "https://code.foss.global/push.rocks/smartmustache.git"
|
||||
},
|
||||
"keywords": [
|
||||
"template"
|
||||
"templating",
|
||||
"handlebars",
|
||||
"text processing",
|
||||
"data binding",
|
||||
"code generation",
|
||||
"string interpolation",
|
||||
"dynamic content"
|
||||
],
|
||||
"author": "Lossless GmbH",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://gitlab.com/pushrocks/tlt/issues"
|
||||
},
|
||||
"homepage": "https://gitlab.com/pushrocks/tlt#README",
|
||||
"homepage": "https://code.foss.global/push.rocks/smartmustache",
|
||||
"dependencies": {
|
||||
"handlebars": "^4.1.0"
|
||||
"handlebars": "^4.7.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gitzone/tsbuild": "^2.1.8",
|
||||
"@gitzone/tsrun": "^1.1.17",
|
||||
"@gitzone/tstest": "^1.0.18",
|
||||
"@pushrocks/tapbundle": "^3.0.7"
|
||||
}
|
||||
}
|
||||
"@gitzone/tsbuild": "^2.1.65",
|
||||
"@gitzone/tsrun": "^1.2.37",
|
||||
"@gitzone/tstest": "^1.0.73",
|
||||
"@pushrocks/tapbundle": "^5.0.4"
|
||||
},
|
||||
"files": [
|
||||
"ts/**/*",
|
||||
"ts_web/**/*",
|
||||
"dist/**/*",
|
||||
"dist_*/**/*",
|
||||
"dist_ts/**/*",
|
||||
"dist_ts_web/**/*",
|
||||
"assets/**/*",
|
||||
"cli.js",
|
||||
"npmextra.json",
|
||||
"readme.md"
|
||||
],
|
||||
"browserslist": [
|
||||
"last 1 chrome versions"
|
||||
]
|
||||
}
|
4679
pnpm-lock.yaml
generated
Normal file
4679
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
1
readme.hints.md
Normal file
1
readme.hints.md
Normal file
@ -0,0 +1 @@
|
||||
|
153
readme.md
Normal file
153
readme.md
Normal file
@ -0,0 +1,153 @@
|
||||
# @push.rocks/smartmustache
|
||||
templates done right
|
||||
|
||||
## Install
|
||||
|
||||
To install `@push.rocks/smartmustache`, use npm:
|
||||
|
||||
```bash
|
||||
npm install @push.rocks/smartmustache
|
||||
```
|
||||
|
||||
Ensure you have Node.js and npm installed on your system before running the install command.
|
||||
|
||||
## Usage
|
||||
|
||||
To use `@push.rocks/smartmustache` in your project, follow these examples to understand how to integrate and utilize the library with its core functionalities. `@push.rocks/smartmustache` leverages Handlebars for templating, providing a seamless and efficient way to render dynamic content.
|
||||
|
||||
### Setting Up Your Project
|
||||
|
||||
First, ensure your project is set up to use ECMAScript modules (ESM) and TypeScript. Your `tsconfig.json` should include:
|
||||
|
||||
```json
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "ESNext",
|
||||
"target": "es2020",
|
||||
"moduleResolution": "node",
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
This setup will allow you to use ESM syntax in your TypeScript files efficiently.
|
||||
|
||||
### Basic Templating
|
||||
|
||||
Let's start with a basic example of using `@push.rocks/smartmustache` to apply data to a template string.
|
||||
|
||||
1. **Create a New Template Instance:**
|
||||
|
||||
First, import `SmartMustache` and create an instance by passing a template string to its constructor.
|
||||
|
||||
```typescript
|
||||
import { SmartMustache } from '@push.rocks/smartmustache';
|
||||
|
||||
const template = 'Hello, {{name}}! Welcome to {{location}}.';
|
||||
const myTemplate = new SmartMustache(template);
|
||||
```
|
||||
|
||||
2. **Apply Data to the Template:**
|
||||
|
||||
Next, apply data to your template using the `applyData` method.
|
||||
|
||||
```typescript
|
||||
const result = myTemplate.applyData({
|
||||
name: 'John Doe',
|
||||
location: 'SmartMustache World'
|
||||
});
|
||||
|
||||
console.log(result); // Outputs: Hello, John Doe! Welcome to SmartMustache World.
|
||||
```
|
||||
|
||||
### Advanced Usage
|
||||
|
||||
**Conditional Statements and Loops:**
|
||||
|
||||
Handlebars syntax allows for conditionals and loops. `@push.rocks/smartmustache` fully supports these Handlebars features.
|
||||
|
||||
- **Conditionals:**
|
||||
|
||||
Consider you have a template that should render content based on certain conditions.
|
||||
|
||||
```typescript
|
||||
const conditionalTemplate = new SmartMustache(`
|
||||
{{#if isAdmin}}
|
||||
<p>Welcome, admin.</p>
|
||||
{{else}}
|
||||
<p>Welcome, user.</p>
|
||||
{{/if}}
|
||||
`);
|
||||
|
||||
console.log(conditionalTemplate.applyData({ isAdmin: true }));
|
||||
```
|
||||
|
||||
- **Loops:**
|
||||
|
||||
Similarly, if you'd like to iterate over an array of items:
|
||||
|
||||
```typescript
|
||||
const loopTemplate = new SmartMustache(`
|
||||
<ul>
|
||||
{{#each items}}
|
||||
<li>{{this}}</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
`);
|
||||
|
||||
console.log(loopTemplate.applyData({
|
||||
items: ['Item 1', 'Item 2', 'Item 3']
|
||||
}));
|
||||
```
|
||||
|
||||
### Providing Helpers
|
||||
|
||||
`@push.rocks/smartmustache` allows integrating Handlebars helpers to extend templating capabilities.
|
||||
|
||||
```typescript
|
||||
import Handlebars from 'handlebars';
|
||||
|
||||
// Register a Handlebars helper
|
||||
Handlebars.registerHelper('uppercase', function(aString) {
|
||||
return aString.toUpperCase();
|
||||
});
|
||||
|
||||
const helperTemplate = new SmartMustache('Hello, {{uppercase name}}!');
|
||||
console.log(helperTemplate.applyData({ name: 'john' })); // Outputs: Hello, JOHN!
|
||||
```
|
||||
|
||||
### Reusing Templates
|
||||
|
||||
You can reuse an instance of `SmartMustache` by setting a new template string.
|
||||
|
||||
```typescript
|
||||
myTemplate.setTemplate('Goodbye, {{name}}. See you in {{location}}.');
|
||||
console.log(myTemplate.applyData({
|
||||
name: 'Jane Doe',
|
||||
location: 'the virtual world'
|
||||
}));
|
||||
```
|
||||
|
||||
### Conclusion
|
||||
|
||||
`@push.rocks/smartmustache` provides a powerful and intuitive way to work with templates in your TypeScript projects. By following these guides, you'll be able to implement dynamic content rendering seamlessly. The flexibility of Handlebars within a TypeScript-friendly wrapper accelerates development, ensuring your templates are both manageable and scalable.
|
||||
|
||||
## License and Legal Information
|
||||
|
||||
This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository.
|
||||
|
||||
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
|
||||
|
||||
### Trademarks
|
||||
|
||||
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.
|
||||
|
||||
### Company Information
|
||||
|
||||
Task Venture Capital GmbH
|
||||
Registered at District court Bremen HRB 35230 HB, Germany
|
||||
|
||||
For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
|
||||
|
||||
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.
|
12
test/test.ts
12
test/test.ts
@ -1,18 +1,20 @@
|
||||
import { tap, expect } from '@pushrocks/tapbundle';
|
||||
|
||||
import * as tlt from '../ts/index';
|
||||
import * as tlt from '../ts/index.js';
|
||||
|
||||
let testMustache: tlt.SmartMustache;
|
||||
tap.test('should create a valid instance of tlt', async () => {
|
||||
testMustache = new tlt.SmartMustache('some awesome {{customString}} that is {{license}} licensed');
|
||||
expect(testMustache).to.be.instanceOf(tlt.SmartMustache);
|
||||
testMustache = new tlt.SmartMustache(
|
||||
'some awesome {{customString}} that is {{license}} licensed'
|
||||
);
|
||||
expect(testMustache).toBeInstanceOf(tlt.SmartMustache);
|
||||
});
|
||||
tap.test('should output a valid string with some data', async () => {
|
||||
let appliedString = testMustache.applyData({
|
||||
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();
|
||||
|
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: '@pushrocks/smartmustache',
|
||||
version: '3.0.2',
|
||||
description: 'templates done right'
|
||||
}
|
@ -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
|
||||
|
14
tsconfig.json
Normal file
14
tsconfig.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"experimentalDecorators": true,
|
||||
"useDefineForClassFields": false,
|
||||
"target": "ES2022",
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext",
|
||||
"esModuleInterop": true,
|
||||
"verbatimModuleSyntax": true
|
||||
},
|
||||
"exclude": [
|
||||
"dist_*/**/*.d.ts"
|
||||
]
|
||||
}
|
@ -1,3 +0,0 @@
|
||||
{
|
||||
"extends": "tslint-config-standard"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user