mirror of
https://github.com/codex-team/codex.docs.git
synced 2025-08-05 13:35:24 +02:00
Docker image optimization (#150)
This commit is contained in:
parent
8d9c19e595
commit
c6e2db0245
15 changed files with 167 additions and 2359 deletions
870
public/dist/code-styling.bundle.js
vendored
870
public/dist/code-styling.bundle.js
vendored
File diff suppressed because one or more lines are too long
17
public/dist/code-styling.css
vendored
17
public/dist/code-styling.css
vendored
|
@ -1,17 +0,0 @@
|
|||
/*!*********************************************************************************************************************************************************************!*\
|
||||
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/highlight.js/styles/github.css ***!
|
||||
\*********************************************************************************************************************************************************************/
|
||||
/*!
|
||||
Theme: GitHub
|
||||
Description: Light theme as seen on github.com
|
||||
Author: github.com
|
||||
Maintainer: @Hirse
|
||||
Updated: 2021-05-15
|
||||
|
||||
Outdated base version: https://github.com/primer/github-syntax-light
|
||||
Current colors taken from GitHub's CSS
|
||||
*/.hljs{background:#fff;color:#24292e}.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-template-tag,.hljs-template-variable,.hljs-type,.hljs-variable.language_{color:#d73a49}.hljs-title,.hljs-title.class_,.hljs-title.class_.inherited__,.hljs-title.function_{color:#6f42c1}.hljs-attr,.hljs-attribute,.hljs-literal,.hljs-meta,.hljs-number,.hljs-operator,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-variable{color:#005cc5}.hljs-meta .hljs-string,.hljs-regexp,.hljs-string{color:#032f62}.hljs-built_in,.hljs-symbol{color:#e36209}.hljs-code,.hljs-comment,.hljs-formula{color:#6a737d}.hljs-name,.hljs-quote,.hljs-selector-pseudo,.hljs-selector-tag{color:#22863a}.hljs-subst{color:#24292e}.hljs-section{color:#005cc5;font-weight:700}.hljs-bullet{color:#735c0f}.hljs-emphasis{color:#24292e;font-style:italic}.hljs-strong{color:#24292e;font-weight:700}.hljs-addition{background-color:#f0fff4;color:#22863a}.hljs-deletion{background-color:#ffeef0;color:#b31d28}
|
||||
/*!*******************************************************************************************************************************************************!*\
|
||||
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js!./src/frontend/styles/diff.pcss ***!
|
||||
\*******************************************************************************************************************************************************/
|
||||
.diff{display:inline-block;width:100%}.diff span{color:inherit!important}.diff--added{background-color:#e2fce7;color:#277030}.diff--added:before{content:"+";opacity:.4}.diff--removed{background-color:#ffe6e6;color:#ae363c}.diff--removed:before{content:"-";opacity:.4}
|
293
public/dist/editor.bundle.js
vendored
293
public/dist/editor.bundle.js
vendored
File diff suppressed because one or more lines are too long
68
public/dist/editor.bundle.js.LICENSE.txt
vendored
68
public/dist/editor.bundle.js.LICENSE.txt
vendored
|
@ -1,68 +0,0 @@
|
|||
/*! For license information please see editor.js.LICENSE.txt */
|
||||
|
||||
/**
|
||||
* CodeTool for Editor.js
|
||||
*
|
||||
* @author CodeX (team@ifmo.su)
|
||||
* @copyright CodeX 2018
|
||||
* @license MIT
|
||||
* @version 2.0.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Delimiter Block for the Editor.js.
|
||||
*
|
||||
* @author CodeX (team@ifmo.su)
|
||||
* @copyright CodeX 2018
|
||||
* @license The MIT License (MIT)
|
||||
* @version 2.0.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Header block for the Editor.js.
|
||||
*
|
||||
* @author CodeX (team@ifmo.su)
|
||||
* @copyright CodeX 2018
|
||||
* @license MIT
|
||||
* @version 2.0.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Image Tool for the Editor.js
|
||||
*
|
||||
* @author CodeX <team@codex.so>
|
||||
* @license MIT
|
||||
* @see {@link https://github.com/editor-js/image}
|
||||
*
|
||||
* To developers.
|
||||
* To simplify Tool structure, we split it to 4 parts:
|
||||
* 1) index.js — main Tool's interface, public API and methods for working with data
|
||||
* 2) uploader.js — module that has methods for sending files via AJAX: from device, by URL or File pasting
|
||||
* 3) ui.js — module for UI manipulations: render, showing preloader, etc
|
||||
* 4) tunes.js — working with Block Tunes: render buttons, handle clicks
|
||||
*
|
||||
* For debug purposes there is a testing server
|
||||
* that can save uploaded files and return a Response {@link UploadResponseFormat}
|
||||
*
|
||||
* $ node dev/server.js
|
||||
*
|
||||
* It will expose 8008 port, so you can pass http://localhost:8008 with the Tools config:
|
||||
*
|
||||
* image: {
|
||||
* class: ImageTool,
|
||||
* config: {
|
||||
* endpoints: {
|
||||
* byFile: 'http://localhost:8008/uploadFile',
|
||||
* byUrl: 'http://localhost:8008/fetchUrl',
|
||||
* }
|
||||
* },
|
||||
* },
|
||||
*/
|
||||
|
||||
/**
|
||||
* Raw HTML Tool for CodeX Editor
|
||||
*
|
||||
* @author CodeX (team@codex.so)
|
||||
* @copyright CodeX 2018
|
||||
* @license The MIT License (MIT)
|
||||
*/
|
1019
public/dist/main.bundle.js
vendored
1019
public/dist/main.bundle.js
vendored
File diff suppressed because one or more lines are too long
8
public/dist/main.bundle.js.LICENSE.txt
vendored
8
public/dist/main.bundle.js.LICENSE.txt
vendored
|
@ -1,8 +0,0 @@
|
|||
/*!
|
||||
* CodeX Module Dispatcher — Initialize frontend Modules from the DOM without inline scripts
|
||||
*
|
||||
* @copyright CodeX Team <team@ifmo.su>
|
||||
* @license MIT https://github.com/codex-team/dispatcher/LICENSE
|
||||
* @author @polinashneider https://github.com/polinashneider
|
||||
* @version 2.0.0
|
||||
*/
|
4
public/dist/main.css
vendored
4
public/dist/main.css
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue