Skip to content

Commit 74e8677

Browse files
committed
v0.11.0
1 parent f6e803d commit 74e8677

File tree

11 files changed

+68
-54
lines changed

11 files changed

+68
-54
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,19 @@
22

33
This plugin allows the [Jsonic](https://jsonic.senecajs.org) JSON
44
parser to support expression syntax.
5+
6+
7+
[![npm version](https://img.shields.io/npm/v/@jsonic/csv.svg)](https://npmjs.com/package/@jsonic/csv)
8+
[![build](https://github.com/jsonicjs/csv/actions/workflows/build.yml/badge.svg)](https://github.com/jsonicjs/csv/actions/workflows/build.yml)
9+
[![Coverage Status](https://coveralls.io/repos/github/jsonicjs/csv/badge.svg?branch=main)](https://coveralls.io/github/jsonicjs/csv?branch=main)
10+
[![Known Vulnerabilities](https://snyk.io/test/github/jsonicjs/csv/badge.svg)](https://snyk.io/test/github/jsonicjs/csv)
11+
[![DeepScan grade](https://deepscan.io/api/teams/5016/projects/22466/branches/663906/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=5016&pid=22466&bid=663906)
12+
[![Maintainability](https://api.codeclimate.com/v1/badges/10e9bede600896c77ce8/maintainability)](https://codeclimate.com/github/jsonicjs/csv/maintainability)
13+
14+
| ![Voxgig](https://www.voxgig.com/res/img/vgt01r.png) | This open source module is sponsored and supported by [Voxgig](https://www.voxgig.com). |
15+
| ---------------------------------------------------- | --------------------------------------------------------------------------------------- |
16+
17+
18+
19+
20+

expr.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Plugin, Rule, Token } from '@jsonic/jsonic-next';
1+
import { Plugin, Rule, Token } from 'jsonic';
22
type OpDef = {
33
src?: string | string[];
44
osrc?: string;

expr.js

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

expr.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.

expr.min.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

expr.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import {
4444
Context,
4545
Token,
4646
util,
47-
} from '@jsonic/jsonic-next'
47+
} from 'jsonic'
4848

4949
const { omap, entries, values } = util
5050

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"name": "@jsonic/expr",
3-
"version": "0.10.0",
3+
"version": "0.11.0",
44
"description": "This plugin allows the [Jsonic](https://jsonic.senecajs.org) JSON parser to support expression syntax.",
55
"main": "expr.js",
66
"type": "commonjs",
7-
"browser": "expr.min.js",
87
"types": "expr.d.ts",
98
"homepage": "https://github.com/jsonicjs/expr",
109
"keywords": [
@@ -24,13 +23,14 @@
2423
"test-some": "jest -t",
2524
"test-watch": "jest --coverage --watchAll",
2625
"watch": "tsc -w -d",
27-
"build": "tsc -d && cp expr.js expr.min.js && browserify -o expr.min.js -e expr.js -s @JsonicExpr -im -i assert -p tinyify",
26+
"build": "tsc -d",
27+
"doc": "jsonic-doc",
2828
"prettier": "prettier --write --no-semi --single-quote *.ts test/*.js",
2929
"clean": "rm -rf node_modules yarn.lock package-lock.json",
3030
"reset": "npm run clean && npm i && npm run build && npm test",
3131
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
3232
"repo-publish": "npm run clean && npm i && npm run repo-publish-quick",
33-
"repo-publish-quick": "npm run prettier && npm run build && npm run test && npm run repo-tag && npm publish --access public --registry https://registry.npmjs.org "
33+
"repo-publish-quick": "npm run prettier && npm run build && npm run test && npm run doc && npm run repo-tag && npm publish --access public --registry https://registry.npmjs.org "
3434
},
3535
"license": "MIT",
3636
"files": [
@@ -40,17 +40,16 @@
4040
"LICENSE"
4141
],
4242
"devDependencies": {
43+
"@jsonic/doc": "^0.0.9",
4344
"@types/jest": "^29.5.14",
44-
"browserify": "^17.0.1",
4545
"esbuild": "^0.24.0",
4646
"es-jest": "^2.1.0",
4747
"jest": "^29.7.0",
4848
"prettier": "^3.3.3",
49-
"tinyify": "^4.0.0",
5049
"typescript": "^5.6.3"
5150
},
5251
"peerDependencies": {
53-
"@jsonic/jsonic-next": ">=2.14.0"
52+
"jsonic": ">=2.15.2"
5453
},
5554
"dependencies": {}
5655
}

0 commit comments

Comments
 (0)