-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed 0e7342c with MkDocs version: 1.4.2
- Loading branch information
0 parents
commit 04ca194
Showing
214 changed files
with
42,267 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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 @@ | ||
developer.tripgo.com |
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,16 @@ | ||
#!/usr/bin/env node | ||
|
||
/* eslint-disable no-process-exit */ | ||
|
||
'use strict'; | ||
|
||
// Checks for "v4." or greater. | ||
function isModernNode() { | ||
return /^v([4-9]|\d{2,})\.\S+$/.test(process.version); | ||
} | ||
|
||
if (!isModernNode()) { | ||
console.error('Node.js ' + process.version + 'detected; alternate script will be run.'); | ||
// Return a non-zero (false) value to the shell. | ||
process.exit(1); | ||
} |
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,31 @@ | ||
{ | ||
"name": "normalize-scss", | ||
"description": "This is the Sass version of Normalize.css, a collection of HTML element and attribute rulesets to normalize styles across all browsers. This port aims to use a light dusting of Sass to make Normalize even easier to integrate with your website.", | ||
"main": [ | ||
"sass/_normalize.scss" | ||
], | ||
"authors": [ | ||
"John Albin Wilkins <[email protected]> (http://john.albin.net/)" | ||
], | ||
"license": "(MIT OR GPL-2.0)", | ||
"keywords": [ | ||
"sass", | ||
"normalize", | ||
"reset", | ||
"typography", | ||
"design", | ||
"ui" | ||
], | ||
"homepage": "https://github.com/JohnAlbin/normalize-scss", | ||
"ignore": [ | ||
"**/.*", | ||
"CHANGELOG.md", | ||
"CONTRIBUTING.md", | ||
"lib", | ||
"node_modules", | ||
"normalize-scss.gemspec", | ||
"sache.json", | ||
"test.html", | ||
"test" | ||
] | ||
} |
Oops, something went wrong.