Skip to content

Commit

Permalink
Release v3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Jan 14, 2023
1 parent 3d91bbc commit d348b6f
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 21 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017-2022 individual contributors to center-key/node-slate
Copyright (c) 2017-2023 Individual contributors to center-key/node-slate
Copyright (c) 2015 SD Elements, Inc.
Copyright (c) 2008-2013 Concur Technologies, Inc.

Expand Down
6 changes: 3 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ <h1 id="authentication">Authentication</h1>
</blockquote>
<pre class="highlight ruby"><code><span class="hljs-keyword">require</span> <span class="hljs-string">&#x27;kittn&#x27;</span>

api = Kittn::APIClient.authorize!(<span class="hljs-string">&#x27;meowmeowmeow&#x27;</span>)</code></pre><pre class="highlight python"><code><span class="hljs-keyword">import</span> kittn
api = <span class="hljs-title class_">Kittn</span><span class="hljs-symbol">:</span><span class="hljs-symbol">:APIClient</span>.authorize!(<span class="hljs-string">&#x27;meowmeowmeow&#x27;</span>)</code></pre><pre class="highlight python"><code><span class="hljs-keyword">import</span> kittn

api = kittn.authorize(<span class="hljs-string">&#x27;meowmeowmeow&#x27;</span>)</code></pre><pre class="highlight bash"><code><span class="hljs-comment"># With shell, you can just pass the correct header with each request</span>
curl <span class="hljs-string">&quot;api_endpoint_here&quot;</span>
Expand All @@ -65,7 +65,7 @@ <h1 id="kittens">Kittens</h1>
<h2 id="get-all-kittens">Get All Kittens</h2>
<pre class="highlight ruby"><code><span class="hljs-keyword">require</span> <span class="hljs-string">&#x27;kittn&#x27;</span>

api = Kittn::APIClient.authorize!(<span class="hljs-string">&#x27;meowmeowmeow&#x27;</span>)
api = <span class="hljs-title class_">Kittn</span><span class="hljs-symbol">:</span><span class="hljs-symbol">:APIClient</span>.authorize!(<span class="hljs-string">&#x27;meowmeowmeow&#x27;</span>)
api.kittens.get</code></pre><pre class="highlight python"><code><span class="hljs-keyword">import</span> kittn

api = kittn.authorize(<span class="hljs-string">&#x27;meowmeowmeow&#x27;</span>)
Expand Down Expand Up @@ -122,7 +122,7 @@ <h3 id="query-parameters">Query Parameters</h3>
<h2 id="get-a-specific-kitten">Get a Specific Kitten</h2>
<pre class="highlight ruby"><code><span class="hljs-keyword">require</span> <span class="hljs-string">&#x27;kittn&#x27;</span>

api = Kittn::APIClient.authorize!(<span class="hljs-string">&#x27;meowmeowmeow&#x27;</span>)
api = <span class="hljs-title class_">Kittn</span><span class="hljs-symbol">:</span><span class="hljs-symbol">:APIClient</span>.authorize!(<span class="hljs-string">&#x27;meowmeowmeow&#x27;</span>)
api.kittens.get(<span class="hljs-number">2</span>)</code></pre><pre class="highlight python"><code><span class="hljs-keyword">import</span> kittn

api = kittn.authorize(<span class="hljs-string">&#x27;meowmeowmeow&#x27;</span>)
Expand Down
2 changes: 1 addition & 1 deletion docs/js/all.js

Large diffs are not rendered by default.

26 changes: 16 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-slate",
"version": "3.1.0",
"version": "3.1.1",
"description": "Node port of lord/slate",
"license": "Apache-2.0",
"type": "module",
Expand Down Expand Up @@ -32,18 +32,24 @@
"gulp lint",
"html-validator build/1-dev",
"rev-web-assets build/2-min build/3-rev"
],
"show-paths": [
"gulp show-paths"
],
"run-server": [
"gulp serve"
]
},
"scripts": {
"build": "run-scripts build && gulp show-paths",
"build": "run-scripts build show-paths",
"build-quiet": "run-scripts build",
"start": "run-scripts build && gulp show-paths && gulp serve",
"start": "run-scripts build show-paths run-server",
"deploy": "deploy.sh",
"test": "jshint gulpfile.js"
},
"dependencies": {
"browser-sync": "~2.27",
"chalk": "~5.1",
"chalk": "~5.2",
"fuse.js": "~6.6",
"gulp": "~4.0",
"gulp-clean-css": "~4.3",
Expand All @@ -57,7 +63,7 @@
"gulp-sass": "~5.1",
"gulp-size": "~4.0",
"gulp-uglify": "~3.0",
"highlight.js": "~11.6",
"highlight.js": "~11.7",
"imagesloaded": "~5.0",
"jquery": "~3.6",
"jquery-highlight": "~3.5",
Expand All @@ -66,13 +72,13 @@
"jquery.tocify": "~1.9",
"js-yaml": "~4.1",
"jshint": "~2.13",
"marked": "~4.1",
"marked": "~4.2",
"merge-stream": "~2.0",
"rev-web-assets": "~0.1",
"rimraf": "~3.0",
"rimraf": "~4.0",
"run-scripts-util": "~0.1",
"sass": "~1.55",
"tocbot": "~4.18",
"w3c-html-validator": "~1.2"
"sass": "~1.57",
"tocbot": "~4.20",
"w3c-html-validator": "~1.3"
}
}
2 changes: 1 addition & 1 deletion source/css/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2017-2022 individual contributors to center-key/node-slate
Copyright (c) 2017-2023 Individual contributors to center-key/node-slate
Copyright (c) 2015 SD Elements, Inc.
Copyright (c) 2008-2013 Concur Technologies, Inc.
Expand Down
2 changes: 1 addition & 1 deletion source/css/print.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
@import "icon-font";

/*
Copyright (c) 2017-2022 individual contributors to center-key/node-slate
Copyright (c) 2017-2023 Individual contributors to center-key/node-slate
Copyright (c) 2015 SD Elements, Inc.
Copyright (c) 2008-2013 Concur Technologies, Inc.
Expand Down
2 changes: 1 addition & 1 deletion source/css/screen.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
@import "icon-font";

/*
Copyright (c) 2017-2022 individual contributors to center-key/node-slate
Copyright (c) 2017-2023 Individual contributors to center-key/node-slate
Copyright (c) 2015 SD Elements, Inc.
Copyright (c) 2008-2013 Concur Technologies, Inc.
Expand Down
2 changes: 1 addition & 1 deletion source/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<%#
Copyright (c) 2017-2022 individual contributors to center-key/node-slate
Copyright (c) 2017-2023 Individual contributors to center-key/node-slate
Copyright (c) 2015 SD Elements, Inc.
Copyright (c) 2008-2013 Concur Technologies, Inc.

Expand Down
2 changes: 1 addition & 1 deletion source/js/app/_lang.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2017-2022 individual contributors to center-key/node-slate
Copyright (c) 2017-2023 Individual contributors to center-key/node-slate
Copyright (c) 2015 SD Elements, Inc.
Copyright (c) 2008-2013 Concur Technologies, Inc.
Expand Down
2 changes: 1 addition & 1 deletion task-runner.sh.command
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ setupTools() {
which node || { echo "Need to install Node.js: https://nodejs.org"; exit; }
node --version
npm install --no-fund
npm update
npm update --no-fund
npm outdated
echo
}
Expand Down

0 comments on commit d348b6f

Please sign in to comment.