progress on migrating to heex templates and font-icons
This commit is contained in:
parent
d43daafdb7
commit
3eff955672
21793 changed files with 2161968 additions and 16895 deletions
assets_old/node_modules/vendors
17
assets_old/node_modules/vendors/index.json
generated
vendored
Normal file
17
assets_old/node_modules/vendors/index.json
generated
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
[
|
||||
"ah",
|
||||
"apple",
|
||||
"atsc",
|
||||
"epub",
|
||||
"hp",
|
||||
"khtml",
|
||||
"moz",
|
||||
"ms",
|
||||
"o",
|
||||
"rim",
|
||||
"ro",
|
||||
"tc",
|
||||
"wap",
|
||||
"webkit",
|
||||
"xv"
|
||||
]
|
22
assets_old/node_modules/vendors/license
generated
vendored
Normal file
22
assets_old/node_modules/vendors/license
generated
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
(The MIT License)
|
||||
|
||||
Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
'Software'), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
68
assets_old/node_modules/vendors/package.json
generated
vendored
Normal file
68
assets_old/node_modules/vendors/package.json
generated
vendored
Normal file
|
@ -0,0 +1,68 @@
|
|||
{
|
||||
"name": "vendors",
|
||||
"version": "1.0.4",
|
||||
"description": "List of vendor prefixes known to the web platform",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"css",
|
||||
"html",
|
||||
"dom",
|
||||
"web",
|
||||
"platform",
|
||||
"vendor",
|
||||
"prefix",
|
||||
"prefixes"
|
||||
],
|
||||
"repository": "wooorm/vendors",
|
||||
"bugs": "https://github.com/wooorm/vendors/issues",
|
||||
"funding": {
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/wooorm"
|
||||
},
|
||||
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
|
||||
"contributors": [
|
||||
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
|
||||
],
|
||||
"main": "index.json",
|
||||
"files": [
|
||||
"index.json"
|
||||
],
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"browserify": "^16.0.0",
|
||||
"prettier": "^1.0.0",
|
||||
"remark-cli": "^7.0.0",
|
||||
"remark-preset-wooorm": "^6.0.0",
|
||||
"tape": "^4.0.0",
|
||||
"tinyify": "^2.0.0",
|
||||
"xo": "^0.25.0"
|
||||
},
|
||||
"scripts": {
|
||||
"format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
|
||||
"build-bundle": "browserify index.json -s vendors -o vendors.js",
|
||||
"build-mangle": "browserify index.json -s vendors -p tinyify -o vendors.min.js",
|
||||
"build": "npm run build-bundle && npm run build-mangle",
|
||||
"test-api": "node test",
|
||||
"test": "npm run format && npm run build && npm run test-api"
|
||||
},
|
||||
"prettier": {
|
||||
"tabWidth": 2,
|
||||
"useTabs": false,
|
||||
"singleQuote": true,
|
||||
"bracketSpacing": false,
|
||||
"semi": false,
|
||||
"trailingComma": "none"
|
||||
},
|
||||
"xo": {
|
||||
"prettier": true,
|
||||
"esnext": false,
|
||||
"ignores": [
|
||||
"vendors.js"
|
||||
]
|
||||
},
|
||||
"remarkConfig": {
|
||||
"plugins": [
|
||||
"preset-wooorm"
|
||||
]
|
||||
}
|
||||
}
|
77
assets_old/node_modules/vendors/readme.md
generated
vendored
Normal file
77
assets_old/node_modules/vendors/readme.md
generated
vendored
Normal file
|
@ -0,0 +1,77 @@
|
|||
# vendors
|
||||
|
||||
[![Build][build-badge]][build]
|
||||
[![Downloads][downloads-badge]][downloads]
|
||||
[![Size][size-badge]][size]
|
||||
|
||||
<!--lint disable no-html-->
|
||||
|
||||
List of (real<sup>†</sup>) vendor prefixes known to the web platform.
|
||||
From [Wikipedia][wiki] and the [CSS 2.1 spec][spec].
|
||||
|
||||
† — real, as in, `mso-` and `prince-` are not included because they are
|
||||
not valid.
|
||||
|
||||
## Install
|
||||
|
||||
[npm][]:
|
||||
|
||||
```sh
|
||||
npm install vendors
|
||||
```
|
||||
|
||||
## Use
|
||||
|
||||
```js
|
||||
var vendors = require('vendors')
|
||||
|
||||
console.log(vendors)
|
||||
```
|
||||
|
||||
Yields:
|
||||
|
||||
```js
|
||||
[ 'ah',
|
||||
'apple',
|
||||
'atsc',
|
||||
'epub',
|
||||
'hp',
|
||||
'khtml',
|
||||
'moz',
|
||||
'ms',
|
||||
'o',
|
||||
'rim',
|
||||
'ro',
|
||||
'tc',
|
||||
'wap',
|
||||
'webkit',
|
||||
'xv' ]
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
[MIT][license] © [Titus Wormer][author]
|
||||
|
||||
<!-- Definitions -->
|
||||
|
||||
[build-badge]: https://img.shields.io/travis/wooorm/vendors.svg
|
||||
|
||||
[build]: https://travis-ci.org/wooorm/vendors
|
||||
|
||||
[downloads-badge]: https://img.shields.io/npm/dm/vendors.svg
|
||||
|
||||
[downloads]: https://www.npmjs.com/package/vendors
|
||||
|
||||
[size-badge]: https://img.shields.io/bundlephobia/minzip/vendors.svg
|
||||
|
||||
[size]: https://bundlephobia.com/result?p=vendors
|
||||
|
||||
[npm]: https://docs.npmjs.com/cli/install
|
||||
|
||||
[license]: license
|
||||
|
||||
[author]: https://wooorm.com
|
||||
|
||||
[wiki]: https://en.wikipedia.org/wiki/CSS_hack#Browser_prefixes
|
||||
|
||||
[spec]: https://www.w3.org/TR/CSS21/syndata.html#vendor-keyword-history
|
Loading…
Add table
Add a link
Reference in a new issue