Skip to content

Commit 8bd4a7e

Browse files
committed
v1.7.0
1 parent da338d5 commit 8bd4a7e

File tree

14 files changed

+26
-26
lines changed

14 files changed

+26
-26
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: npm run test22
3535

3636
- name: test
37-
if: matrix['node-version'] == '20.x' || matrix['node-version'] == '=18.x'
37+
if: matrix['node-version'] == '20.x' || matrix['node-version'] == '18.x'
3838
run: npm run test
3939

4040
- name: test-cov

dist-test/multisource.test.js

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist-test/multisource.test.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/multisource.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Jsonic, Context, Rule, Plugin } from '@jsonic/jsonic-next';
1+
import { Jsonic, Context, Rule, Plugin } from 'jsonic';
22
interface MultiSourceMeta {
33
path?: string;
44
parents?: string[];

dist/multisource.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/multisource.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jsonic/multisource",
3-
"version": "1.6.0",
3+
"version": "1.7.0",
44
"description": "",
55
"main": "dist/multisource.js",
66
"type": "commonjs",

src/multisource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Copyright (c) 2021 Richard Rodger, MIT License */
22

3-
import { Jsonic, Context, Rule, Plugin } from '@jsonic/jsonic-next'
3+
import { Jsonic, Context, Rule, Plugin } from 'jsonic'
44
import { Directive, DirectiveOptions } from '@jsonic/directive'
55

66
import { makeJsonicProcessor } from './processor/jsonic'

src/processor/jsonic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* Copyright (c) 2021-2023 Richard Rodger, MIT License */
22

33

4-
import { Jsonic, Rule, Context } from '@jsonic/jsonic-next'
4+
import { Jsonic, Rule, Context } from 'jsonic'
55

66
import {
77
MultiSourceOptions,

0 commit comments

Comments
 (0)