-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c72a6d1
commit 3f41046
Showing
9 changed files
with
108 additions
and
108 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
{ | ||
"name": "@documentalist/client", | ||
"version": "4.0.0", | ||
"description": "Runtime functions and interfaces used in rendering documentalist data", | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"scripts": { | ||
"build": "run-s compile", | ||
"compile": "tsc --project ./src", | ||
"lint": "tslint --project ./src", | ||
"lint-fix": "yarn lint --fix" | ||
}, | ||
"devDependencies": { | ||
"tslint": "^6.1.3", | ||
"typescript": "~5.2.2" | ||
}, | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:palantir/documentalist.git" | ||
}, | ||
"author": "Palantir Technologies", | ||
"license": "Apache-2.0" | ||
"name": "@documentalist/client", | ||
"version": "5.0.0", | ||
"description": "Runtime functions and interfaces used in rendering documentalist data", | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"scripts": { | ||
"build": "run-s compile", | ||
"compile": "tsc --project ./src", | ||
"lint": "tslint --project ./src", | ||
"lint-fix": "yarn lint --fix" | ||
}, | ||
"devDependencies": { | ||
"tslint": "^6.1.3", | ||
"typescript": "~5.2.2" | ||
}, | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:palantir/documentalist.git" | ||
}, | ||
"author": "Palantir Technologies", | ||
"license": "Apache-2.0" | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,55 @@ | ||
{ | ||
"name": "@documentalist/compiler", | ||
"version": "4.0.0", | ||
"description": "The documentalist compiler", | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"bin": { | ||
"documentalist": "./cli.js" | ||
}, | ||
"scripts": { | ||
"build": "run-s compile", | ||
"clean": "rm -rf lib", | ||
"compile": "tsc --project ./src", | ||
"lint": "tslint --project ./src", | ||
"lint-fix": "yarn lint --fix", | ||
"test": "jest --config jest.config.json", | ||
"test:debug": "node --inspect-brk node_modules/.bin/jest --config jest.config.json --runInBand", | ||
"watch": "yarn compile --watch" | ||
}, | ||
"dependencies": { | ||
"@documentalist/client": "^4.0.0", | ||
"@types/kss": "^3.0.2", | ||
"glob": "^10.3.10", | ||
"js-yaml": "^4.1.0", | ||
"kss": "^3.0.1", | ||
"marked": "^4.0.12", | ||
"tsconfig-resolver": "^3.0.1", | ||
"typedoc": "~0.25.2", | ||
"yargs": "^17.4.0" | ||
}, | ||
"devDependencies": { | ||
"@types/glob": "^8.1.0", | ||
"@types/jest": "^27.4.1", | ||
"@types/js-yaml": "^4.0.5", | ||
"@types/marked": "^4.0.8", | ||
"@types/node": "^18.18.6", | ||
"@types/yargs": "^17.0.24", | ||
"jest": "^29.1.2", | ||
"jest-junit": "^14.0.1", | ||
"npm-run-all": "^4.1.5", | ||
"ts-jest": "^29.1.1", | ||
"ts-node": "^10.9.1", | ||
"tslint": "^6.1.3", | ||
"typescript": "~5.2.2" | ||
}, | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:palantir/documentalist.git" | ||
}, | ||
"author": "Palantir Technologies", | ||
"license": "Apache-2.0" | ||
"name": "@documentalist/compiler", | ||
"version": "5.0.0", | ||
"description": "The documentalist compiler", | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"bin": { | ||
"documentalist": "./cli.js" | ||
}, | ||
"scripts": { | ||
"build": "run-s compile", | ||
"clean": "rm -rf lib", | ||
"compile": "tsc --project ./src", | ||
"lint": "tslint --project ./src", | ||
"lint-fix": "yarn lint --fix", | ||
"test": "jest --config jest.config.json", | ||
"test:debug": "node --inspect-brk node_modules/.bin/jest --config jest.config.json --runInBand", | ||
"watch": "yarn compile --watch" | ||
}, | ||
"dependencies": { | ||
"@documentalist/client": "^5.0.0", | ||
"@types/kss": "^3.0.2", | ||
"glob": "^10.3.10", | ||
"js-yaml": "^4.1.0", | ||
"kss": "^3.0.1", | ||
"marked": "^4.0.12", | ||
"tsconfig-resolver": "^3.0.1", | ||
"typedoc": "~0.25.2", | ||
"yargs": "^17.4.0" | ||
}, | ||
"devDependencies": { | ||
"@types/glob": "^8.1.0", | ||
"@types/jest": "^27.4.1", | ||
"@types/js-yaml": "^4.0.5", | ||
"@types/marked": "^4.0.8", | ||
"@types/node": "^18.18.6", | ||
"@types/yargs": "^17.0.24", | ||
"jest": "^29.1.2", | ||
"jest-junit": "^14.0.1", | ||
"npm-run-all": "^4.1.5", | ||
"ts-jest": "^29.1.1", | ||
"ts-node": "^10.9.1", | ||
"tslint": "^6.1.3", | ||
"typescript": "~5.2.2" | ||
}, | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:palantir/documentalist.git" | ||
}, | ||
"author": "Palantir Technologies", | ||
"license": "Apache-2.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
{ | ||
"name": "@documentalist/docs", | ||
"version": "4.0.0", | ||
"description": "Documentation for documentalist", | ||
"private": true, | ||
"scripts": { | ||
"build": "npm-run-all -p build:json build:ts build:version -s build:pug build:css", | ||
"build:json": "documentalist '../{client,compiler,docs}/src/**/*' --out docs.json", | ||
"build:ts": "tsc --project ./src/tsconfig.json", | ||
"build:version": "echo v$npm_package_version > theme/version.txt", | ||
"build:pug": "pug -O docs.json ./theme/index.pug --pretty -o ./dist", | ||
"build:css": "cp src/*.css dist/", | ||
"lint": "tslint --project ./src", | ||
"lint-fix": "yarn lint --fix" | ||
}, | ||
"dependencies": { | ||
"@documentalist/compiler": "^4.0.0" | ||
}, | ||
"devDependencies": { | ||
"npm-run-all": "^4.1.5", | ||
"pug-cli": "^1.0.0-alpha6", | ||
"tslint": "^6.1.3", | ||
"typescript": "~5.2.2" | ||
}, | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:palantir/documentalist.git" | ||
}, | ||
"author": "Palantir Technologies" | ||
"name": "@documentalist/docs", | ||
"version": "4.0.0", | ||
"description": "Documentation for documentalist", | ||
"private": true, | ||
"scripts": { | ||
"build": "npm-run-all -p build:json build:ts build:version -s build:pug build:css", | ||
"build:json": "documentalist '../{client,compiler,docs}/src/**/*' --out docs.json", | ||
"build:ts": "tsc --project ./src/tsconfig.json", | ||
"build:version": "echo v$npm_package_version > theme/version.txt", | ||
"build:pug": "pug -O docs.json ./theme/index.pug --pretty -o ./dist", | ||
"build:css": "cp src/*.css dist/", | ||
"lint": "tslint --project ./src", | ||
"lint-fix": "yarn lint --fix" | ||
}, | ||
"dependencies": { | ||
"@documentalist/compiler": "^5.0.0" | ||
}, | ||
"devDependencies": { | ||
"npm-run-all": "^4.1.5", | ||
"pug-cli": "^1.0.0-alpha6", | ||
"tslint": "^6.1.3", | ||
"typescript": "~5.2.2" | ||
}, | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:palantir/documentalist.git" | ||
}, | ||
"author": "Palantir Technologies" | ||
} |
3f41046
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Build preview link for commit "Autorelease": documentation
This is an automated comment from the deploy-preview CircleCI job.