-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed 422c90a with MkDocs version: 1.5.3
- Loading branch information
Unknown
committed
Apr 9, 2024
0 parents
commit 8572457
Showing
4,450 changed files
with
821,982 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 @@ | ||
android.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.