mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-17 05:10:40 -07:00
@@ -23,6 +23,7 @@
|
||||
"prefer-const": 2,
|
||||
"no-unused-vars": "off",
|
||||
"indent": "off",
|
||||
"no-mixed-operators": "off",
|
||||
"no-dupe-class-members": "off",
|
||||
"no-useless-constructor": "off",
|
||||
"@typescript-eslint/indent": ["error", 2],
|
||||
|
||||
@@ -5,8 +5,19 @@ jobs:
|
||||
name: Test
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest]
|
||||
os: [ubuntu-latest]
|
||||
timezone: [Etc/GMT, Asia/Shanghai, America/New_York]
|
||||
node-version: [22]
|
||||
include:
|
||||
- os: macos-latest
|
||||
timezone: America/New_York
|
||||
node-versoin: 22
|
||||
- os: ubuntu-latest
|
||||
timezone: Etc/GMT
|
||||
node-version: 16
|
||||
- os: ubuntu-latest
|
||||
timezone: Asia/Shanghai
|
||||
node-version: 14
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
@@ -16,7 +27,7 @@ jobs:
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '20'
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
- name: Download artifacts
|
||||
|
||||
@@ -50,6 +50,10 @@ const browserStream = {
|
||||
delimiters: ['', ''],
|
||||
'./streamed-emitter': '../build/streamed-emitter-browser'
|
||||
}
|
||||
const browserPerf = {
|
||||
include: ['./src/context/context.ts', './src/render/render.ts'],
|
||||
'node:perf_hooks': '../build/perf_hooks-browser'
|
||||
}
|
||||
const esmRequire = {
|
||||
include: './src/fs/node.ts',
|
||||
delimiters: ['', ''],
|
||||
@@ -95,6 +99,7 @@ const browserEsm = {
|
||||
versionInjection,
|
||||
replace(browserFS),
|
||||
replace(browserStream),
|
||||
replace(browserPerf),
|
||||
typescript(tsconfig('es6'))
|
||||
],
|
||||
treeshake,
|
||||
@@ -113,6 +118,7 @@ const browserUmd = {
|
||||
versionInjection,
|
||||
replace(browserFS),
|
||||
replace(browserStream),
|
||||
replace(browserPerf),
|
||||
typescript(tsconfig('es5'))
|
||||
],
|
||||
treeshake,
|
||||
@@ -131,6 +137,7 @@ const browserMin = {
|
||||
versionInjection,
|
||||
replace(browserFS),
|
||||
replace(browserStream),
|
||||
replace(browserPerf),
|
||||
typescript(tsconfig('es5')),
|
||||
uglify()
|
||||
],
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
const polyfill = {
|
||||
now: () => Date.now()
|
||||
}
|
||||
|
||||
export const performance = typeof window === 'object' && window.performance || polyfill
|
||||
@@ -0,0 +1,19 @@
|
||||
import { Parser } from './parser'
|
||||
import { Liquid, TokenKind } from '..'
|
||||
|
||||
describe('Parser', () => {
|
||||
it('should coerce input to string', () => {
|
||||
const parser = new Parser(new Liquid())
|
||||
const templates = parser.parse({} as any)
|
||||
expect(templates.length).toEqual(1)
|
||||
expect(templates[0]).toMatchObject({
|
||||
str: '[object Object]',
|
||||
token: {
|
||||
kind: TokenKind.HTML,
|
||||
input: '[object Object]',
|
||||
begin: 0,
|
||||
end: 15
|
||||
}
|
||||
})
|
||||
})
|
||||
})
|
||||
@@ -1,8 +1,7 @@
|
||||
import { Liquid } from '../../src/liquid'
|
||||
import { Drop } from '../../src/drop/drop'
|
||||
import { Drop, Liquid } from '../..'
|
||||
|
||||
class SettingsDrop extends Drop {
|
||||
private foo = 'FOO'
|
||||
public foo = 'FOO'
|
||||
public bar () {
|
||||
return 'BAR'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user