Skip to content
This repository was archived by the owner on Apr 6, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.11.3
12.16.3
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src/assets
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sudo: false
language: node_js
node_js:
- '8.11.3'
- '12'
branches:
only:
- site
Expand Down
6 changes: 3 additions & 3 deletions docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const path = require('path')
const fs = require('fs-extra')
const child_process = require('child_process')
const request = require('sync-request')
const BUILD_CMD = 'node apidocs.js '; // leave space at end for specifying title as argument
const BUILD_CMD = 'node apidocs.js ' // leave space at end for specifying title as argument

function build(version, title) {
const exPath = path.join('./ex', version)
Expand Down Expand Up @@ -93,7 +93,7 @@ const res = request(
const releases = JSON.parse(res.getBody())

// Ignore drafts
const tags = releases.filter(r => !r.draft).map(r => r.tag_name)
const tags = releases.filter((r) => !r.draft).map((r) => r.tag_name)

console.info('Discovered', tags.length, 'releases:', tags)

Expand All @@ -105,7 +105,7 @@ child_process.execSync(
{ stdio: [0, 1, 2] }
)

tags.forEach(function(tag) {
tags.forEach(function (tag) {
// Ignore releases that are already checked into source control
if (fs.existsSync(path.join('_current', 'docs', 'api', tag))) {
console.info(`Tagged version ${tag} exists already`)
Expand Down
27,560 changes: 15,526 additions & 12,034 deletions package-lock.json

Large diffs are not rendered by default.

60 changes: 35 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,38 +26,48 @@
"build": "gatsby build",
"develop": "gatsby develop",
"styles": "cd ui && gulp build",
"format": "prettier --write 'src/**/*.js'",
"format": "prettier --write \"src/**/*.js\"",
"docs": "node docs.js",
"deploy": "gh-pages -t -d public -b master --repo https://$GH_TOKEN@github.com/excaliburjs/excaliburjs.github.io.git"
},
"devDependencies": {
"gatsby-cli": "2.4.3",
"gh-pages": "1.2.0",
"prettier": "1.14.3",
"semantic-ui": "2.3.3"
"fomantic-ui": "2.8.4",
"gatsby-cli": "2.12.16",
"gh-pages": "2.2.0",
"husky": "4.2.5",
"lint-staged": "10.2.2",
"prettier": "2.0.5"
},
"keywords": [],
"dependencies": {
"filesize": "3.6.1",
"fs-extra": "6.0.1",
"gatsby": "2.0.21",
"gatsby-link": "2.0.4",
"gatsby-plugin-catch-links": "2.0.4",
"gatsby-plugin-sharp": "2.0.6",
"gatsby-remark-copy-linked-files": "2.0.5",
"gatsby-remark-images": "2.0.4",
"filesize": "6.1.0",
"fs-extra": "9.0.0",
"gatsby": "2.21.22",
"gatsby-link": "2.4.2",
"gatsby-plugin-catch-links": "2.3.1",
"gatsby-plugin-sharp": "2.6.2",
"gatsby-remark-copy-linked-files": "2.3.2",
"gatsby-remark-images": "3.3.2",
"gatsby-source-github": "0.0.2",
"gatsby-transformer-sharp": "2.1.3",
"gatsby-plugin-react-helmet": "3.0.0",
"gatsby-remark-autolink-headers": "2.0.6",
"gatsby-remark-prismjs": "3.0.1",
"gatsby-source-filesystem": "2.0.3",
"gatsby-transformer-remark": "2.1.7",
"prismjs": "1.15.0",
"react": "16.5.2",
"react-dom": "16.5.2",
"react-helmet": "5.2.0",
"rehype-react": "3.0.3",
"sync-request": "6.0.0"
"gatsby-transformer-sharp": "2.5.2",
"gatsby-plugin-react-helmet": "3.3.1",
"gatsby-remark-autolink-headers": "2.3.1",
"gatsby-remark-prismjs": "3.5.1",
"gatsby-source-filesystem": "2.3.1",
"gatsby-transformer-remark": "2.8.7",
"prismjs": "1.20.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "6.0.0",
"rehype-react": "5.0.1",
"sync-request": "6.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "prettier --write"
}
}
2 changes: 1 addition & 1 deletion semantic.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
"autoInstall": false,
"rtl": false,
"components": ["reset", "site", "button", "container", "divider", "header", "icon", "image", "label", "list", "segment", "grid", "menu", "message", "table", "card", "item", "statistic", "transition", "state", "visibility"],
"version": "2.3.3"
"version": "2.8.4"
}
Loading