Skip to content

Commit b092138

Browse files
committed
jsonic-name
1 parent 5c5eef8 commit b092138

File tree

6 files changed

+71
-21
lines changed

6 files changed

+71
-21
lines changed

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"test-watch": "jest --coverage --watchAll",
2626
"watch": "tsc -w -d",
2727
"doc": "jsonic-doc",
28-
"build": "tsc -d && cp path.js path.min.js && browserify -o path.min.js -e path.js -s @JsonicPath -im -i assert -p tinyify",
28+
"build": "tsc -d",
2929
"prettier": "prettier --write --no-semi --single-quote *.ts test/*.js",
3030
"clean": "rm -rf node_modules yarn.lock package-lock.json",
3131
"reset": "npm run clean && npm i && npm run build && npm test",
@@ -48,12 +48,10 @@
4848
"es-jest": "^2.1.0",
4949
"jest": "^29.7.0",
5050
"prettier": "^3.3.3",
51-
"tinyify": "^4.0.0",
5251
"typescript": "^5.6.3",
53-
"@jsonic/expr": ">=0.9.0",
54-
"@jsonic/jsonic-next": ">=2.14.0"
52+
"@jsonic/expr": ">=0.9.0"
5553
},
5654
"peerDependencies": {
57-
"@jsonic/jsonic-next": ">=2.14.0"
55+
"jsonic": ">=2.15.1"
5856
}
5957
}

path.min.js

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

test/path.test.js

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

test/path.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.

test/path.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
/* Copyright (c) 2022 Richard Rodger and other contributors, MIT License */
1+
/* Copyright (c) 2022-2024 Richard Rodger and other contributors, MIT License */
22

33

4-
import { Jsonic, Rule } from '@jsonic/jsonic-next'
4+
import { Jsonic, Rule } from 'jsonic'
55
import {
66
Expr,
77
Op,

test/quick.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
const { Jsonic } = require('@jsonic/jsonic-next')
2-
const { Debug } = require('@jsonic/jsonic-next/debug')
1+
const { Jsonic } = require('jsonic')
2+
const { Debug } = require('jsonic/debug')
33

44
console.log(Jsonic)
55
console.log(Debug)

0 commit comments

Comments
 (0)