ode-csslib-openent-martinique 3.1.2 → 3.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/editor-resources/font3/LICENSE.txt +0 -0
- package/dist/editor-resources/font3/README.txt +0 -0
- package/dist/editor-resources/font3/config.json +0 -0
- package/dist/editor-resources/font3/css/animation.css +0 -0
- package/dist/editor-resources/font3/css/entcore-editor-codes.css +0 -0
- package/dist/editor-resources/font3/css/entcore-editor-embedded.css +0 -0
- package/dist/editor-resources/font3/css/entcore-editor-ie7-codes.css +0 -0
- package/dist/editor-resources/font3/css/entcore-editor-ie7.css +0 -0
- package/dist/editor-resources/font3/css/entcore-editor.css +0 -0
- package/dist/editor-resources/font3/demo.html +0 -0
- package/dist/editor-resources/font3/font/entcore-editor.eot +0 -0
- package/dist/editor-resources/font3/font/entcore-editor.svg +0 -0
- package/dist/editor-resources/font3/font/entcore-editor.ttf +0 -0
- package/dist/editor-resources/font3/font/entcore-editor.woff +0 -0
- package/dist/editor-resources/font3/font/entcore-editor.woff2 +0 -0
- package/dist/fonts/Roboto/Roboto-Bold.ttf +0 -0
- package/dist/fonts/Roboto/Roboto-BoldItalic.ttf +0 -0
- package/dist/fonts/Roboto/Roboto-Italic.ttf +0 -0
- package/dist/fonts/Roboto/Roboto-Regular.ttf +0 -0
- package/dist/fonts/generic-icons/generic-icons.svg +1 -0
- package/dist/fonts/generic-icons/generic-icons.ttf +0 -0
- package/dist/fonts/generic-icons/generic-icons.woff +0 -0
- package/dist/skins/default/theme.css +3 -3
- package/dist/skins/default/theme.css.map +1 -1
- package/dist/skins/dyslexic/theme.css +3 -3
- package/dist/skins/dyslexic/theme.css.map +1 -1
- package/dist/version.txt +2 -2
- package/package.json +26 -24
package/dist/version.txt
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
entcore-css-lib=4.1.
|
|
2
|
-
ode-csslib-openent-martinique=3.1.
|
|
1
|
+
entcore-css-lib=4.1.1 30/08/2023 14:04:57
|
|
2
|
+
ode-csslib-openent-martinique=3.1.5 30/08/2023 14:43:29
|
package/package.json
CHANGED
|
@@ -1,28 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ode-csslib-openent-martinique",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.5",
|
|
4
4
|
"description": "Open ENT theme by Open Digital Education",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"override:i18n": "OVERRIDE_SRC=${OVERRIDE_SRC} OVERRIDE_DIST=${OVERRIDE_DIST} node ode-override-plugin.js",
|
|
7
|
-
"sass:watch": "sass --source-map -w scss/index.scss docs/index.css",
|
|
8
|
-
"sass:build:debug": "sass --load-path=node_modules/ --source-map scss/index.scss docs/index.css",
|
|
9
|
-
"sass:build:release": "sass --load-path=node_modules/ --style=compressed ${SKIN_DIR}/$SKIN/theme.scss ${SKIN_DIR}/$SKIN/theme.css && cpr ${SKIN_DIR}/$SKIN/ ${DIST_DIR}/skins/$SKIN/ -o",
|
|
10
|
-
"dev:dependencies": "cpr node_modules/entcore-css-lib/assets/ docs/ -o",
|
|
11
|
-
"dev:prepare": "npm run sass:build:debug && npm run dev:dependencies && cpr assets/ docs/ -o",
|
|
12
|
-
"dev:watch": "npm run dev:prepare && concurrently \" npm run sass:watch \" \" npm run dev:serve \" ",
|
|
13
|
-
"dev:serve": "live-server --open=docs/ --ignore=**/node_modules/**,**/dist/**,**/package.json,**/.git/**",
|
|
14
|
-
"dev:lint": "stylelint scss/**/*.scss || echo \"lint faild for some file(s).\"",
|
|
15
|
-
"dev:lint-fix": "stylelint scss/**/*.scss --fix || echo \"lint faild for some file(s).\"",
|
|
16
|
-
"dev:copy-theme": "rm -rf build-css && ./build.sh build && cp -r dist/* ../recette/assets/themes/theme-open-ent",
|
|
17
|
-
"prettier:check": "npx prettier --check scss/**/*.scss",
|
|
18
|
-
"prettier:write": "npx prettier --write scss/**/*.scss",
|
|
19
|
-
"prettier:all": "npm run prettier:write && npm run prettier:check",
|
|
20
|
-
"release:clean": "rimraf ${DIST_DIR}",
|
|
21
|
-
"release:dependencies": "cpr node_modules/entcore-css-lib/assets/ ${DIST_DIR}/ -o",
|
|
22
|
-
"release:prepare": "npm run release:clean && npm run release:dependencies && cpr template/ ${DIST_DIR}/template/ -o && cpr portal.html ${DIST_DIR}/ -o && cpr assets/ ${DIST_DIR}/ -o",
|
|
23
|
-
"release:build": "npm run release:prepare && SKIN=default npm run sass:build:release",
|
|
24
|
-
"watch": "sass --watch --style compressed --load-path=node_modules/ --no-source-map scss/index.scss ../ode-dev-server/assets/themes/cg77/skins/default/theme.css"
|
|
25
|
-
},
|
|
26
5
|
"repository": {
|
|
27
6
|
"type": "git",
|
|
28
7
|
"url": "git@github.com:OPEN-ENT-NG/theme-open-ent.git"
|
|
@@ -46,5 +25,28 @@
|
|
|
46
25
|
"sass": "^1.49.9",
|
|
47
26
|
"entcore-generic-icons": "git+https://github.com/opendigitaleducation/generic-icons.git#master"
|
|
48
27
|
},
|
|
49
|
-
"files": [
|
|
50
|
-
|
|
28
|
+
"files": [
|
|
29
|
+
"dist"
|
|
30
|
+
],
|
|
31
|
+
"scripts": {
|
|
32
|
+
"override:i18n": "OVERRIDE_SRC=${OVERRIDE_SRC} OVERRIDE_DIST=${OVERRIDE_DIST} node ode-override-plugin.js",
|
|
33
|
+
"sass:watch": "sass --source-map -w scss/index.scss docs/index.css",
|
|
34
|
+
"sass:build:debug": "sass --load-path=node_modules/ --source-map scss/index.scss docs/index.css",
|
|
35
|
+
"sass:build:release": "sass --load-path=node_modules/ --style=compressed ${SKIN_DIR}/$SKIN/theme.scss ${SKIN_DIR}/$SKIN/theme.css && cpr ${SKIN_DIR}/$SKIN/ ${DIST_DIR}/skins/$SKIN/ -o",
|
|
36
|
+
"dev:dependencies": "cpr node_modules/entcore-css-lib/assets/ docs/ -o",
|
|
37
|
+
"dev:prepare": "npm run sass:build:debug && npm run dev:dependencies && cpr assets/ docs/ -o",
|
|
38
|
+
"dev:watch": "npm run dev:prepare && concurrently \" npm run sass:watch \" \" npm run dev:serve \" ",
|
|
39
|
+
"dev:serve": "live-server --open=docs/ --ignore=**/node_modules/**,**/dist/**,**/package.json,**/.git/**",
|
|
40
|
+
"dev:lint": "stylelint scss/**/*.scss || echo \"lint faild for some file(s).\"",
|
|
41
|
+
"dev:lint-fix": "stylelint scss/**/*.scss --fix || echo \"lint faild for some file(s).\"",
|
|
42
|
+
"dev:copy-theme": "rm -rf build-css && ./build.sh build && cp -r dist/* ../recette/assets/themes/theme-open-ent",
|
|
43
|
+
"prettier:check": "npx prettier --check scss/**/*.scss",
|
|
44
|
+
"prettier:write": "npx prettier --write scss/**/*.scss",
|
|
45
|
+
"prettier:all": "npm run prettier:write && npm run prettier:check",
|
|
46
|
+
"release:clean": "rimraf ${DIST_DIR}",
|
|
47
|
+
"release:dependencies": "cpr node_modules/entcore-css-lib/assets/ ${DIST_DIR}/ -o",
|
|
48
|
+
"release:prepare": "npm run release:clean && npm run release:dependencies && cpr template/ ${DIST_DIR}/template/ -o && cpr portal.html ${DIST_DIR}/ -o && cpr assets/ ${DIST_DIR}/ -o",
|
|
49
|
+
"release:build": "npm run release:prepare && SKIN=default npm run sass:build:release",
|
|
50
|
+
"watch": "sass --watch --style compressed --load-path=node_modules/ --no-source-map scss/index.scss ../ode-dev-server/assets/themes/cg77/skins/default/theme.css"
|
|
51
|
+
}
|
|
52
|
+
}
|