-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
9 changed files
with
132 additions
and
113 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
|
||
[*.{json, yaml}] | ||
indent_style = space | ||
tab_width = 4 | ||
trim_trailing_whitespace = false | ||
|
||
[*.{js, ts}] | ||
indent_style = space | ||
tab_width = 4 |
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,31 +1,29 @@ | ||
{ | ||
"private": true, | ||
"workspaces": [ | ||
"packages/*" | ||
], | ||
"scripts": { | ||
"tsc": "tsc -b", | ||
"dev": "tsc -b && yarn workspace vutex.github.io dev", | ||
"build": "tsc -b && yarn workspace vutex.github.io build", | ||
"bootstrap": "lerna bootstrap --no-ci --npm-client yarn", | ||
"start": "yarn dev && start http://localhost:8080", | ||
"deploy": "bash build/deploy.sh", | ||
"lint": "tslint */lib/*.ts && eslint .", | ||
"lint:fix": "tslint */lib/*.ts --fix && eslint . --fix" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^10.12.18", | ||
"chalk": "^2.4.2", | ||
"commander": "^2.19.0", | ||
"eslint": "^5.11.1", | ||
"eslint-plugin-vue": "^5.0.0", | ||
"semver": "^5.6.0", | ||
"ts-loader": "^5.3.2", | ||
"tslint": "^5.12.0", | ||
"typescript": "^3.2.2" | ||
}, | ||
"engines": { | ||
"node": ">= 6.0.0", | ||
"npm": ">= 3.0.0" | ||
} | ||
"private": true, | ||
"workspaces": [ | ||
"packages/*" | ||
], | ||
"scripts": { | ||
"tsc": "tsc -b", | ||
"dev": "tsc -b && yarn workspace vutex.github.io dev", | ||
"update": "yarn upgrade-interactive --latest", | ||
"build": "tsc -b && yarn workspace vutex.github.io build", | ||
"bootstrap": "lerna bootstrap --no-ci --npm-client yarn", | ||
"start": "yarn dev && start http://localhost:8080", | ||
"deploy": "bash build/deploy.sh", | ||
"lint": "tslint */lib/*.ts && eslint .", | ||
"lint:fix": "tslint */lib/*.ts --fix && eslint . --fix" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^12.0.10", | ||
"chalk": "^2.4.2", | ||
"commander": "^2.20.0", | ||
"eslint": "^6.0.1", | ||
"eslint-plugin-vue": "^5.2.3", | ||
"semver": "^6.1.2", | ||
"ts-loader": "^6.0.4", | ||
"tslint": "^5.18.0", | ||
"typescript": "^3.5.2" | ||
}, | ||
"dependencies": {} | ||
} |
32 changes: 16 additions & 16 deletions
32
packages/vuepress-plugin-component-container/package.json
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,18 +1,18 @@ | ||
{ | ||
"name": "@vutex/vuepress-plugin-component-container", | ||
"version": "0.1.0", | ||
"description": "test", | ||
"author": "shigma <1700011071@pku.edu.cn>", | ||
"main": "dist/index.js", | ||
"license": "MIT", | ||
"files": [ | ||
"dist" | ||
], | ||
"dependencies": { | ||
"js-yaml": "^3.12.1" | ||
}, | ||
"devDependencies": { | ||
"@types/js-yaml": "^3.11.4", | ||
"@types/markdown-it": "^0.0.7" | ||
} | ||
"name": "@vutex/vuepress-plugin-component-container", | ||
"version": "0.1.0", | ||
"description": "test", | ||
"author": "shigma <1700011071@pku.edu.cn>", | ||
"main": "dist/index.js", | ||
"license": "MIT", | ||
"files": [ | ||
"dist" | ||
], | ||
"dependencies": { | ||
"js-yaml": "^3.12.1" | ||
}, | ||
"devDependencies": { | ||
"@types/js-yaml": "^3.12.1", | ||
"@types/markdown-it": "^0.0.7" | ||
} | ||
} |
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,15 +1,15 @@ | ||
{ | ||
"name": "@vutex/vuepress-plugin-math", | ||
"version": "0.1.1", | ||
"description": "A vuepress plugin which provides support for latex syntax in markdown files.", | ||
"author": "shigma <1700011071@pku.edu.cn>", | ||
"license": "MIT", | ||
"main": "index.js", | ||
"scripts": { | ||
"build": "stylus styles/index.styl -o dist/index.css -P -r" | ||
}, | ||
"devDependencies": { | ||
"@types/markdown-it": "^0.0.7", | ||
"@types/node": "^10.12.18" | ||
} | ||
"name": "@vutex/vuepress-plugin-math", | ||
"version": "0.1.1", | ||
"description": "A vuepress plugin which provides support for latex syntax in markdown files.", | ||
"author": "shigma <1700011071@pku.edu.cn>", | ||
"license": "MIT", | ||
"main": "index.js", | ||
"scripts": { | ||
"build": "stylus styles/index.styl -o dist/index.css -P -r" | ||
}, | ||
"devDependencies": { | ||
"@types/markdown-it": "^0.0.7", | ||
"@types/node": "^12.0.10" | ||
} | ||
} |
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,12 +1,12 @@ | ||
{ | ||
"name": "@vutex/vuepress-plugin-media", | ||
"version": "0.1.0", | ||
"description": "test", | ||
"author": "shigma <1700011071@pku.edu.cn>", | ||
"license": "MIT", | ||
"main": "index.js", | ||
"dependencies": { | ||
"@moefe/vue-aplayer": "^2.0.0-beta.5", | ||
"vue-dplayer": "^0.0.10" | ||
} | ||
} | ||
"name": "@vutex/vuepress-plugin-media", | ||
"version": "0.1.0", | ||
"description": "test", | ||
"author": "shigma <1700011071@pku.edu.cn>", | ||
"license": "MIT", | ||
"main": "index.js", | ||
"dependencies": { | ||
"@moefe/vue-aplayer": "^2.0.0-beta.5", | ||
"vue-dplayer": "^0.0.10" | ||
} | ||
} |
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,34 +1,35 @@ | ||
{ | ||
"name": "@vutex/vuepress-theme-vutex", | ||
"version": "0.1.2", | ||
"description": "test", | ||
"author": "shigma <1700011071@pku.edu.cn>", | ||
"main": "index.js", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@vuepress/plugin-google-analytics": "^1.0.0-alpha.20", | ||
"@vuepress/plugin-medium-zoom": "^1.0.0-alpha.20", | ||
"@vuepress/plugin-pwa": "^1.0.0-alpha.20", | ||
"@vuepress/plugin-register-components": "^1.0.0-alpha.20", | ||
"@vutex/vuepress-plugin-component-container": "^0.1.0", | ||
"@vutex/vuepress-plugin-math": "^0.1.0", | ||
"@vutex/vuepress-plugin-media": "^0.1.0", | ||
"@yubisaki/vuepress-plugin-blog": "0.1.6", | ||
"@yubisaki/vuepress-plugin-pagination": "0.1.6", | ||
"autoprefixer": "^9.3.1", | ||
"autosize": "^4.0.2", | ||
"axios": "^0.18.0", | ||
"conventional-changelog-cli": "^2.0.11", | ||
"date-fns": "^1.29.0", | ||
"github-markdown-css": "^2.10.0", | ||
"html2canvas": "^1.0.0-alpha.12", | ||
"markdown-it-anchor": "^5.0.2", | ||
"markdown-it-imsize": "^2.0.1", | ||
"markdown-it-task-lists": "^2.1.1", | ||
"markdown-it-toc": "^1.1.0", | ||
"node-polyglot": "^2.3.0", | ||
"raw-loader": "^0.5.1", | ||
"release-it": "^7.6.3", | ||
"vue": "^2.5.21" | ||
} | ||
} | ||
"name": "@vutex/vuepress-theme-vutex", | ||
"version": "0.1.2", | ||
"description": "test", | ||
"author": "shigma <1700011071@pku.edu.cn>", | ||
"main": "index.js", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@vuepress/plugin-google-analytics": "^1.0.0-alpha.20", | ||
"@vuepress/plugin-medium-zoom": "^1.0.0-alpha.20", | ||
"@vuepress/plugin-pwa": "^1.0.0-alpha.20", | ||
"@vuepress/plugin-register-components": "^1.0.0-alpha.20", | ||
"@vutex/vuepress-plugin-component-container": "^0.1.0", | ||
"@vuepress/plugin-back-to-top": "^1.0.0-alpha.0", | ||
"@vutex/vuepress-plugin-math": "^0.1.0", | ||
"@vutex/vuepress-plugin-media": "^0.1.0", | ||
"@yubisaki/vuepress-plugin-blog": "0.1.6", | ||
"@yubisaki/vuepress-plugin-pagination": "0.1.6", | ||
"autoprefixer": "^9.3.1", | ||
"autosize": "^4.0.2", | ||
"axios": "^0.18.0", | ||
"conventional-changelog-cli": "^2.0.11", | ||
"date-fns": "^1.29.0", | ||
"github-markdown-css": "^2.10.0", | ||
"html2canvas": "^1.0.0-alpha.12", | ||
"markdown-it-anchor": "^5.0.2", | ||
"markdown-it-imsize": "^2.0.1", | ||
"markdown-it-task-lists": "^2.1.1", | ||
"markdown-it-toc": "^1.1.0", | ||
"node-polyglot": "^2.3.0", | ||
"raw-loader": "^0.5.1", | ||
"release-it": "^7.6.3", | ||
"vue": "^2.5.21" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -3,5 +3,5 @@ | |
"declaration": true, | ||
"module": "commonjs", | ||
"target": "esnext" | ||
}, | ||
} | ||
} |
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,8 +1,14 @@ | ||
{ | ||
"references": [ | ||
{ "path": "./packages/vuepress-plugin-component-container" }, | ||
{ "path": "./packages/vuepress-plugin-math" }, | ||
{ "path": "./packages/vuepress-theme-vutex" }, | ||
{ | ||
"path": "./packages/vuepress-plugin-component-container" | ||
}, | ||
{ | ||
"path": "./packages/vuepress-plugin-math" | ||
}, | ||
{ | ||
"path": "./packages/vuepress-theme-vutex" | ||
} | ||
], | ||
"files": [] | ||
} | ||
} |
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,7 +1,7 @@ | ||
{ | ||
"rules": { | ||
"semicolon": [true, "never"], | ||
"quotemark": [true, "single", "avoid-escape", "avoid-template"], | ||
"indent": 4 | ||
} | ||
} | ||
"rules": { | ||
"semicolon": [true, "never"], | ||
"quotemark": [true, "single", "avoid-escape", "avoid-template"], | ||
"indent": [true, "spaces", 4] | ||
} | ||
} |