Skip to content
This repository has been archived by the owner on Mar 26, 2022. It is now read-only.

Commit

Permalink
v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
luhmann committed Nov 23, 2017
1 parent 0580dac commit 2e5fd2c
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 46 deletions.
6 changes: 4 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"lerna": "2.5.1",
"packages": ["packages/*"],
"packages": [
"packages/*"
],
"npmClient": "yarn",
"version": "0.0.0",
"version": "0.1.0",
"useWorkspaces": true
}
27 changes: 13 additions & 14 deletions packages/parser/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
{
"name": "@tufte-markdown/parser",
"version": "1.0.0",
"description":
"A markdown parser that output html that is compatible with tufte-css",
"version": "0.1.0",
"description": "A markdown parser that output html that is compatible with tufte-css",
"main": "dist/parser.cjs.js",
"module": "dist/parser.es.js",
"scripts": {
"preversion": "npm run build",
"prebuild": "rimraf dist/**",
"build": "cross-env npm run build:es && npm run build:cjs",
"build:watch": "cross-env npm run build:es -- -w",
"build:es":
"cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f es -i src/index.js -o dist/parser.es.js",
"build:cjs":
"cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f cjs -i src/index.js -o dist/parser.cjs.js"
"build:es": "cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f es -i src/index.js -o dist/parser.es.js",
"build:cjs": "cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f cjs -i src/index.js -o dist/parser.cjs.js"
},
"keywords": [
"tufte",
Expand All @@ -35,10 +32,16 @@
"bugs": {
"url": "https://github.com/luhmann/tufte-markdown/issues"
},
"files": ["README..md", "dist/**"],
"files": [
"README..md",
"dist/**"
],
"homepage": "https://github.com/luhmann/tufte-markdown#readme",
"devDependencies": {},
"dependencies": {
"@tufte-markdown/remark-figure-parser": "^0.1.0",
"@tufte-markdown/remark-figure-transformer": "^0.1.0",
"@tufte-markdown/remark-sidenotes": "^0.1.0",
"@tufte-markdown/remark-wrap-in-section": "^0.1.0",
"react": "^16.1.1",
"remark-highlight.js": "^5.0.0",
"remark-html": "^6.0.1",
Expand All @@ -50,11 +53,7 @@
"remark-textr": "^3.0.1",
"typographic-base": "^1.0.4",
"unified": "^6.1.6",
"vfile-reporter": "^4.0.0",
"@tufte-markdown/remark-sidenotes": "^1.0.0",
"@tufte-markdown/remark-wrap-in-section": "^1.0.0",
"@tufte-markdown/remark-figure-parser": "^1.0.0",
"@tufte-markdown/remark-figure-transformer": "^1.0.0"
"vfile-reporter": "^4.0.0"
},
"peerDependencies": {
"react": "^15.6.0 || ^16.0.0"
Expand Down
17 changes: 8 additions & 9 deletions packages/remark-figure-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
{
"name": "@tufte-markdown/remark-figure-parser",
"version": "1.0.0",
"description":
"A remark parser that allows to tokenize tufte-style-figures with remark",
"version": "0.1.0",
"description": "A remark parser that allows to tokenize tufte-style-figures with remark",
"main": "dist/remark-figure-parser.cjs.js",
"module": "dist/remark-figure-parser.es.js",
"scripts": {
"preversion": "npm run build",
"prebuild": "rimraf dist/**",
"build": "cross-env npm run build:es && npm run build:cjs",
"build:watch": "cross-env npm run build:es -- -w",
"build:es":
"cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f es -i src/index.js -o dist/remark-figure-parser.es.js",
"build:cjs":
"cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f cjs -i src/index.js -o dist/remark-figure-parser.cjs.js"
"build:es": "cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f es -i src/index.js -o dist/remark-figure-parser.es.js",
"build:cjs": "cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f cjs -i src/index.js -o dist/remark-figure-parser.cjs.js"
},
"keywords": [
"tufte",
Expand All @@ -35,9 +32,11 @@
"bugs": {
"url": "https://github.com/luhmann/tufte-markdown/issues"
},
"files": ["README..md", "dist/**"],
"files": [
"README..md",
"dist/**"
],
"homepage": "https://github.com/luhmann/tufte-markdown#readme",
"devDependencies": {},
"dependencies": {
"remark-parse": "^4.0.0",
"unified": "^6.1.6"
Expand Down
21 changes: 10 additions & 11 deletions packages/remark-figure-transformer/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
{
"name": "@tufte-markdown/remark-figure-transformer",
"version": "1.0.0",
"description":
"A remark transformer outputting the correct html for Figures as used in the Stylesheets by Edward Tufte",
"version": "0.1.0",
"description": "A remark transformer outputting the correct html for Figures as used in the Stylesheets by Edward Tufte",
"main": "dist/remark-figure-transformer.cjs.js",
"module": "dist/remark-figure-transformer.es.js",
"scripts": {
"preversion": "npm run build",
"prebuild": "rimraf dist/**",
"build": "cross-env npm run build:es && npm run build:cjs",
"build:watch": "cross-env npm run build:es -- -w",
"build:es":
"cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f es -i src/index.js -o dist/remark-figure-transformer.es.js",
"build:cjs":
"cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f cjs -i src/index.js -o dist/remark-figure-transformer.cjs.js"
"build:es": "cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f es -i src/index.js -o dist/remark-figure-transformer.es.js",
"build:cjs": "cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f cjs -i src/index.js -o dist/remark-figure-transformer.cjs.js"
},
"keywords": [
"tufte",
Expand All @@ -35,11 +32,13 @@
"bugs": {
"url": "https://github.com/luhmann/tufte-markdown/issues"
},
"files": ["README..md", "dist/**"],
"files": [
"README..md",
"dist/**"
],
"homepage": "https://github.com/luhmann/tufte-markdown#readme",
"devDependencies": {},
"dependencies": {
"unist-util-visit": "^1.2.0",
"html-parse-stringify": "^1.0.2"
"html-parse-stringify": "^1.0.2",
"unist-util-visit": "^1.2.0"
}
}
2 changes: 1 addition & 1 deletion packages/remark-sidenotes/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tufte-markdown/remark-sidenotes",
"version": "1.0.0",
"version": "0.1.0",
"description": "A remark transformer supporting Sidenotes as used in the Stylesheets by Edward Tufte",
"main": "dist/remark-sidenotes.cjs.js",
"module": "dist/remark-sidenotes.es.js",
Expand Down
17 changes: 8 additions & 9 deletions packages/remark-wrap-in-section.js/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
{
"name": "@tufte-markdown/remark-wrap-in-section",
"version": "1.0.0",
"description":
"A remark transformer wrapping document blocks that are started by a level-2 heading in a section to support html that relies on the stylesheets of Edward Tufte",
"version": "0.1.0",
"description": "A remark transformer wrapping document blocks that are started by a level-2 heading in a section to support html that relies on the stylesheets of Edward Tufte",
"main": "dist/remark-wrap-in-section.js",
"module": "dist/remark-wrap-in-section.es.js",
"scripts": {
"preversion": "npm run build",
"prebuild": "rimraf dist/**",
"build": "cross-env npm run build:es && npm run build:cjs",
"build:watch": "cross-env npm run build:es -- -w",
"build:es":
"cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f es -i src/index.js -o dist/remark-wrap-in-section.es.js",
"build:cjs":
"cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f cjs -i src/index.js -o dist/remark-wrap-in-section.cjs.js"
"build:es": "cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f es -i src/index.js -o dist/remark-wrap-in-section.es.js",
"build:cjs": "cross-env NODE_ENV=development rollup -c ../../rollup.config.js -f cjs -i src/index.js -o dist/remark-wrap-in-section.cjs.js"
},
"keywords": [
"tufte",
Expand All @@ -35,9 +32,11 @@
"bugs": {
"url": "https://github.com/luhmann/tufte-markdown/issues"
},
"files": ["README..md", "dist/**"],
"files": [
"README..md",
"dist/**"
],
"homepage": "https://github.com/luhmann/tufte-markdown#readme",
"devDependencies": {},
"dependencies": {
"unist-util-visit": "^1.2.0"
}
Expand Down

0 comments on commit 2e5fd2c

Please sign in to comment.