@manticore-labs/nest 0.0.23 → 0.0.24
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/.circleci/config.yml +47 -47
- package/.idea/codeStyles/Project.xml +38 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/{npm.iml → manticore-labs-nest.iml} +11 -11
- package/.idea/misc.xml +70 -0
- package/.idea/modules.xml +7 -7
- package/.idea/vcs.xml +5 -5
- package/.idea/workspace.xml +144 -172
- package/LICENSE +8 -8
- package/README.1.md +116 -116
- package/README.md +1 -1
- package/build/main/index.d.ts +11 -10
- package/build/main/index.js +14 -13
- package/build/main/lib/funciones-util/buscar-registro.d.ts +1 -1
- package/build/main/lib/funciones-util/buscar-registro.js +146 -146
- package/build/main/lib/funciones-util/buscar-un-registro-por-id.d.ts +1 -1
- package/build/main/lib/funciones-util/buscar-un-registro-por-id.js +25 -25
- package/build/main/lib/funciones-util/buscar-where-or.d.ts +1 -1
- package/build/main/lib/funciones-util/buscar-where-or.js +31 -31
- package/build/main/lib/funciones-util/contar-registros.d.ts +1 -1
- package/build/main/lib/funciones-util/contar-registros.js +41 -41
- package/build/main/lib/funciones-util/crear-un-registro.d.ts +1 -1
- package/build/main/lib/funciones-util/crear-un-registro.js +24 -24
- package/build/main/lib/funciones-util/editar-un-registro.d.ts +1 -1
- package/build/main/lib/funciones-util/editar-un-registro.js +24 -24
- package/build/main/lib/funciones-util/eliminar-uno.d.ts +1 -1
- package/build/main/lib/funciones-util/eliminar-uno.js +35 -35
- package/build/main/lib/funciones-util/respuestas-servidor.d.ts +4 -0
- package/build/main/lib/funciones-util/respuestas-servidor.js +12 -0
- package/build/main/lib/funciones-util/typeorm/valor-esta-dentro-del-arreglo.d.ts +2 -2
- package/build/main/lib/funciones-util/typeorm/valor-esta-dentro-del-arreglo.js +21 -21
- package/build/main/lib/interfaces-util/arreglo-funciones-booleanas.d.ts +4 -4
- package/build/main/lib/interfaces-util/arreglo-funciones-booleanas.js +2 -2
- package/build/main/lib/interfaces-util/broadcast-join.gateway.d.ts +14 -14
- package/build/main/lib/interfaces-util/broadcast-join.gateway.js +2 -2
- package/build/main/lib/interfaces-util/delete-service.d.ts +12 -12
- package/build/main/lib/interfaces-util/delete-service.js +2 -2
- package/build/main/lib/interfaces-util/dto.d.ts +4 -4
- package/build/main/lib/interfaces-util/dto.js +2 -2
- package/build/main/lib/interfaces-util/find-where-relations.d.ts +8 -8
- package/build/main/lib/interfaces-util/find-where-relations.js +2 -2
- package/build/main/lib/interfaces-util/funciones-seguridad.d.ts +13 -13
- package/build/main/lib/interfaces-util/funciones-seguridad.js +2 -2
- package/build/main/lib/interfaces-util/funciones.gateway.d.ts +5 -5
- package/build/main/lib/interfaces-util/funciones.gateway.js +2 -2
- package/build/main/lib/interfaces-util/mensajes-controller.d.ts +6 -6
- package/build/main/lib/interfaces-util/mensajes-controller.js +2 -2
- package/build/main/lib/interfaces-util/politicas-de-seguridad.d.ts +17 -17
- package/build/main/lib/interfaces-util/politicas-de-seguridad.js +2 -2
- package/build/main/lib/interfaces-util/respuesta-general.gateway.d.ts +5 -5
- package/build/main/lib/interfaces-util/respuesta-general.gateway.js +2 -2
- package/build/main/lib/principal.controller.d.ts +20 -20
- package/build/main/lib/principal.controller.js +309 -309
- package/build/main/lib/principal.dto.d.ts +5 -5
- package/build/main/lib/principal.dto.js +21 -21
- package/build/main/lib/principal.entity.d.ts +7 -7
- package/build/main/lib/principal.entity.js +42 -42
- package/build/main/lib/principal.find-many-options.d.ts +14 -14
- package/build/main/lib/principal.find-many-options.js +48 -48
- package/build/main/lib/principal.find-many-where-or.d.ts +10 -10
- package/build/main/lib/principal.find-many-where-or.js +28 -28
- package/build/main/lib/principal.gateway.d.ts +35 -35
- package/build/main/lib/principal.gateway.js +399 -399
- package/build/main/lib/principal.id.d.ts +3 -3
- package/build/main/lib/principal.id.js +16 -16
- package/build/main/lib/principal.resolver.d.ts +20 -20
- package/build/main/lib/principal.resolver.js +343 -343
- package/build/main/lib/principal.service.d.ts +35 -35
- package/build/main/lib/principal.service.js +203 -203
- package/build/main/lib/seguridad/aplicar-politicas-de-seguridad.d.ts +4 -4
- package/build/main/lib/seguridad/aplicar-politicas-de-seguridad.js +16 -16
- package/build/main/lib/seguridad/funciones/convertir-arreglo-en-arreglo-de-observables.d.ts +3 -3
- package/build/main/lib/seguridad/funciones/convertir-arreglo-en-arreglo-de-observables.js +26 -26
- package/build/main/lib/seguridad/funciones/index.d.ts +6 -6
- package/build/main/lib/seguridad/funciones/index.js +12 -12
- package/build/main/lib/seguridad/funciones/obtener-reflector-seguridad.d.ts +1 -1
- package/build/main/lib/seguridad/funciones/obtener-reflector-seguridad.js +6 -6
- package/build/main/lib/seguridad/funciones/obtener-request.d.ts +1 -1
- package/build/main/lib/seguridad/funciones/obtener-request.js +6 -6
- package/build/main/lib/seguridad/funciones/obtener-response.d.ts +1 -1
- package/build/main/lib/seguridad/funciones/obtener-response.js +6 -6
- package/build/main/lib/seguridad/funciones/tiene-acceso-permitido.d.ts +2 -2
- package/build/main/lib/seguridad/funciones/tiene-acceso-permitido.js +13 -13
- package/build/main/lib/seguridad/seguridad.decorator.d.ts +1 -1
- package/build/main/lib/seguridad/seguridad.decorator.js +4 -4
- package/build/module/index.d.ts +11 -10
- package/build/module/index.js +9 -8
- package/build/module/lib/funciones-util/buscar-registro.d.ts +1 -1
- package/build/module/lib/funciones-util/buscar-registro.js +143 -143
- package/build/module/lib/funciones-util/buscar-un-registro-por-id.d.ts +1 -1
- package/build/module/lib/funciones-util/buscar-un-registro-por-id.js +22 -22
- package/build/module/lib/funciones-util/buscar-where-or.d.ts +1 -1
- package/build/module/lib/funciones-util/buscar-where-or.js +28 -28
- package/build/module/lib/funciones-util/contar-registros.d.ts +1 -1
- package/build/module/lib/funciones-util/contar-registros.js +38 -38
- package/build/module/lib/funciones-util/crear-un-registro.d.ts +1 -1
- package/build/module/lib/funciones-util/crear-un-registro.js +21 -21
- package/build/module/lib/funciones-util/editar-un-registro.d.ts +1 -1
- package/build/module/lib/funciones-util/editar-un-registro.js +21 -21
- package/build/module/lib/funciones-util/eliminar-uno.d.ts +1 -1
- package/build/module/lib/funciones-util/eliminar-uno.js +32 -32
- package/build/module/lib/funciones-util/respuestas-servidor.d.ts +4 -0
- package/build/module/lib/funciones-util/respuestas-servidor.js +10 -0
- package/build/module/lib/funciones-util/typeorm/valor-esta-dentro-del-arreglo.d.ts +2 -2
- package/build/module/lib/funciones-util/typeorm/valor-esta-dentro-del-arreglo.js +18 -18
- package/build/module/lib/interfaces-util/arreglo-funciones-booleanas.d.ts +4 -4
- package/build/module/lib/interfaces-util/broadcast-join.gateway.d.ts +14 -14
- package/build/module/lib/interfaces-util/delete-service.d.ts +12 -12
- package/build/module/lib/interfaces-util/dto.d.ts +4 -4
- package/build/module/lib/interfaces-util/find-where-relations.d.ts +8 -8
- package/build/module/lib/interfaces-util/funciones-seguridad.d.ts +13 -13
- package/build/module/lib/interfaces-util/funciones.gateway.d.ts +5 -5
- package/build/module/lib/interfaces-util/mensajes-controller.d.ts +6 -6
- package/build/module/lib/interfaces-util/politicas-de-seguridad.d.ts +17 -17
- package/build/module/lib/interfaces-util/respuesta-general.gateway.d.ts +5 -5
- package/build/module/lib/principal.controller.d.ts +20 -20
- package/build/module/lib/principal.controller.js +306 -306
- package/build/module/lib/principal.dto.d.ts +5 -5
- package/build/module/lib/principal.dto.js +18 -18
- package/build/module/lib/principal.entity.d.ts +7 -7
- package/build/module/lib/principal.entity.js +39 -39
- package/build/module/lib/principal.find-many-options.d.ts +14 -14
- package/build/module/lib/principal.find-many-options.js +45 -45
- package/build/module/lib/principal.find-many-where-or.d.ts +10 -10
- package/build/module/lib/principal.find-many-where-or.js +25 -25
- package/build/module/lib/principal.gateway.d.ts +35 -35
- package/build/module/lib/principal.gateway.js +396 -396
- package/build/module/lib/principal.id.d.ts +3 -3
- package/build/module/lib/principal.id.js +13 -13
- package/build/module/lib/principal.resolver.d.ts +20 -20
- package/build/module/lib/principal.resolver.js +340 -340
- package/build/module/lib/principal.service.d.ts +35 -35
- package/build/module/lib/principal.service.js +200 -200
- package/build/module/lib/seguridad/aplicar-politicas-de-seguridad.d.ts +4 -4
- package/build/module/lib/seguridad/aplicar-politicas-de-seguridad.js +13 -13
- package/build/module/lib/seguridad/funciones/convertir-arreglo-en-arreglo-de-observables.d.ts +3 -3
- package/build/module/lib/seguridad/funciones/convertir-arreglo-en-arreglo-de-observables.js +23 -23
- package/build/module/lib/seguridad/funciones/index.d.ts +6 -6
- package/build/module/lib/seguridad/funciones/index.js +6 -6
- package/build/module/lib/seguridad/funciones/obtener-reflector-seguridad.d.ts +1 -1
- package/build/module/lib/seguridad/funciones/obtener-reflector-seguridad.js +3 -3
- package/build/module/lib/seguridad/funciones/obtener-request.d.ts +1 -1
- package/build/module/lib/seguridad/funciones/obtener-request.js +3 -3
- package/build/module/lib/seguridad/funciones/obtener-response.d.ts +1 -1
- package/build/module/lib/seguridad/funciones/obtener-response.js +3 -3
- package/build/module/lib/seguridad/funciones/tiene-acceso-permitido.d.ts +2 -2
- package/build/module/lib/seguridad/funciones/tiene-acceso-permitido.js +10 -10
- package/build/module/lib/seguridad/seguridad.decorator.d.ts +1 -1
- package/build/module/lib/seguridad/seguridad.decorator.js +2 -2
- package/package.json +1 -1
package/.circleci/config.yml
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
# https://circleci.com/docs/2.0/language-javascript/
|
|
2
|
-
version: 2
|
|
3
|
-
jobs:
|
|
4
|
-
"node-8":
|
|
5
|
-
docker:
|
|
6
|
-
- image: circleci/node:8
|
|
7
|
-
working_directory: ~/typescript-starter
|
|
8
|
-
steps:
|
|
9
|
-
- checkout
|
|
10
|
-
# Download and cache dependencies
|
|
11
|
-
- restore_cache:
|
|
12
|
-
keys:
|
|
13
|
-
- v1-dependencies-{{ checksum "package.json" }}
|
|
14
|
-
# fallback to using the latest cache if no exact match is found
|
|
15
|
-
- v1-dependencies-
|
|
16
|
-
- run: npm install
|
|
17
|
-
- save_cache:
|
|
18
|
-
paths:
|
|
19
|
-
- node_modules
|
|
20
|
-
key: v1-dependencies-{{ checksum "package.json" }}
|
|
21
|
-
- run: npm test
|
|
22
|
-
- run: npx nyc report --reporter=lcov | npx codecov
|
|
23
|
-
- run: npm run cov:check
|
|
24
|
-
"node-latest":
|
|
25
|
-
docker:
|
|
26
|
-
- image: circleci/node:latest
|
|
27
|
-
working_directory: ~/typescript-starter
|
|
28
|
-
steps:
|
|
29
|
-
- checkout
|
|
30
|
-
- restore_cache:
|
|
31
|
-
keys:
|
|
32
|
-
- v1-dependencies-{{ checksum "package.json" }}
|
|
33
|
-
- v1-dependencies-
|
|
34
|
-
- run: npm install
|
|
35
|
-
- save_cache:
|
|
36
|
-
paths:
|
|
37
|
-
- node_modules
|
|
38
|
-
key: v1-dependencies-{{ checksum "package.json" }}
|
|
39
|
-
- run: npm test
|
|
40
|
-
- run: npx nyc report --reporter=lcov | npx codecov
|
|
41
|
-
- run: npm run cov:check
|
|
42
|
-
|
|
43
|
-
workflows:
|
|
44
|
-
version: 2
|
|
45
|
-
build:
|
|
46
|
-
jobs:
|
|
47
|
-
- "node-8"
|
|
1
|
+
# https://circleci.com/docs/2.0/language-javascript/
|
|
2
|
+
version: 2
|
|
3
|
+
jobs:
|
|
4
|
+
"node-8":
|
|
5
|
+
docker:
|
|
6
|
+
- image: circleci/node:8
|
|
7
|
+
working_directory: ~/typescript-starter
|
|
8
|
+
steps:
|
|
9
|
+
- checkout
|
|
10
|
+
# Download and cache dependencies
|
|
11
|
+
- restore_cache:
|
|
12
|
+
keys:
|
|
13
|
+
- v1-dependencies-{{ checksum "package.json" }}
|
|
14
|
+
# fallback to using the latest cache if no exact match is found
|
|
15
|
+
- v1-dependencies-
|
|
16
|
+
- run: npm install
|
|
17
|
+
- save_cache:
|
|
18
|
+
paths:
|
|
19
|
+
- node_modules
|
|
20
|
+
key: v1-dependencies-{{ checksum "package.json" }}
|
|
21
|
+
- run: npm test
|
|
22
|
+
- run: npx nyc report --reporter=lcov | npx codecov
|
|
23
|
+
- run: npm run cov:check
|
|
24
|
+
"node-latest":
|
|
25
|
+
docker:
|
|
26
|
+
- image: circleci/node:latest
|
|
27
|
+
working_directory: ~/typescript-starter
|
|
28
|
+
steps:
|
|
29
|
+
- checkout
|
|
30
|
+
- restore_cache:
|
|
31
|
+
keys:
|
|
32
|
+
- v1-dependencies-{{ checksum "package.json" }}
|
|
33
|
+
- v1-dependencies-
|
|
34
|
+
- run: npm install
|
|
35
|
+
- save_cache:
|
|
36
|
+
paths:
|
|
37
|
+
- node_modules
|
|
38
|
+
key: v1-dependencies-{{ checksum "package.json" }}
|
|
39
|
+
- run: npm test
|
|
40
|
+
- run: npx nyc report --reporter=lcov | npx codecov
|
|
41
|
+
- run: npm run cov:check
|
|
42
|
+
|
|
43
|
+
workflows:
|
|
44
|
+
version: 2
|
|
45
|
+
build:
|
|
46
|
+
jobs:
|
|
47
|
+
- "node-8"
|
|
48
48
|
- "node-latest"
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<component name="ProjectCodeStyleConfiguration">
|
|
2
|
+
<code_scheme name="Project" version="173">
|
|
3
|
+
<JSCodeStyleSettings>
|
|
4
|
+
<option name="FORCE_SEMICOLON_STYLE" value="true" />
|
|
5
|
+
<option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
|
|
6
|
+
<option name="USE_DOUBLE_QUOTES" value="false" />
|
|
7
|
+
<option name="FORCE_QUOTE_STYlE" value="true" />
|
|
8
|
+
<option name="ENFORCE_TRAILING_COMMA" value="Remove" />
|
|
9
|
+
<option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
|
|
10
|
+
<option name="SPACES_WITHIN_IMPORTS" value="true" />
|
|
11
|
+
</JSCodeStyleSettings>
|
|
12
|
+
<TypeScriptCodeStyleSettings>
|
|
13
|
+
<option name="FORCE_SEMICOLON_STYLE" value="true" />
|
|
14
|
+
<option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
|
|
15
|
+
<option name="USE_DOUBLE_QUOTES" value="false" />
|
|
16
|
+
<option name="FORCE_QUOTE_STYlE" value="true" />
|
|
17
|
+
<option name="ENFORCE_TRAILING_COMMA" value="Remove" />
|
|
18
|
+
<option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
|
|
19
|
+
<option name="SPACES_WITHIN_IMPORTS" value="true" />
|
|
20
|
+
</TypeScriptCodeStyleSettings>
|
|
21
|
+
<codeStyleSettings language="JavaScript">
|
|
22
|
+
<option name="SOFT_MARGINS" value="80" />
|
|
23
|
+
<indentOptions>
|
|
24
|
+
<option name="INDENT_SIZE" value="2" />
|
|
25
|
+
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
|
26
|
+
<option name="TAB_SIZE" value="2" />
|
|
27
|
+
</indentOptions>
|
|
28
|
+
</codeStyleSettings>
|
|
29
|
+
<codeStyleSettings language="TypeScript">
|
|
30
|
+
<option name="SOFT_MARGINS" value="80" />
|
|
31
|
+
<indentOptions>
|
|
32
|
+
<option name="INDENT_SIZE" value="2" />
|
|
33
|
+
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
|
34
|
+
<option name="TAB_SIZE" value="2" />
|
|
35
|
+
</indentOptions>
|
|
36
|
+
</codeStyleSettings>
|
|
37
|
+
</code_scheme>
|
|
38
|
+
</component>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="WEB_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager">
|
|
4
|
-
<content url="file://$MODULE_DIR$">
|
|
5
|
-
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
|
6
|
-
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
|
7
|
-
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
|
8
|
-
</content>
|
|
9
|
-
<orderEntry type="inheritedJdk" />
|
|
10
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
11
|
-
</component>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="WEB_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$">
|
|
5
|
+
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
|
6
|
+
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
|
7
|
+
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
|
8
|
+
</content>
|
|
9
|
+
<orderEntry type="inheritedJdk" />
|
|
10
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
11
|
+
</component>
|
|
12
12
|
</module>
|
package/.idea/misc.xml
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="JavaScriptSettings">
|
|
4
|
+
<option name="languageLevel" value="ES6" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="MarkdownProjectSettings">
|
|
7
|
+
<PreviewSettings splitEditorLayout="SPLIT" splitEditorPreview="PREVIEW" useGrayscaleRendering="false" zoomFactor="1.25" maxImageWidth="0" showGitHubPageIfSynced="false" allowBrowsingInPreview="false" synchronizePreviewPosition="false" highlightPreviewType="LINE" highlightFadeOut="5" highlightOnTyping="false" synchronizeSourcePosition="false">
|
|
8
|
+
<PanelProvider>
|
|
9
|
+
<provider providerId="com.vladsch.idea.multimarkdown.editor.swing.html.panel" providerName="Default - Swing" />
|
|
10
|
+
</PanelProvider>
|
|
11
|
+
</PreviewSettings>
|
|
12
|
+
<ParserSettings>
|
|
13
|
+
<PegdownExtensions>
|
|
14
|
+
<option name="ABBREVIATIONS" value="false" />
|
|
15
|
+
<option name="ANCHORLINKS" value="true" />
|
|
16
|
+
<option name="ATXHEADERSPACE" value="true" />
|
|
17
|
+
<option name="AUTOLINKS" value="true" />
|
|
18
|
+
<option name="DEFINITIONS" value="false" />
|
|
19
|
+
<option name="FENCED_CODE_BLOCKS" value="true" />
|
|
20
|
+
<option name="FOOTNOTES" value="false" />
|
|
21
|
+
<option name="FORCELISTITEMPARA" value="false" />
|
|
22
|
+
<option name="HARDWRAPS" value="false" />
|
|
23
|
+
<option name="QUOTES" value="false" />
|
|
24
|
+
<option name="RELAXEDHRULES" value="true" />
|
|
25
|
+
<option name="SMARTS" value="false" />
|
|
26
|
+
<option name="STRIKETHROUGH" value="true" />
|
|
27
|
+
<option name="SUPPRESS_HTML_BLOCKS" value="false" />
|
|
28
|
+
<option name="SUPPRESS_INLINE_HTML" value="false" />
|
|
29
|
+
<option name="TABLES" value="true" />
|
|
30
|
+
<option name="TASKLISTITEMS" value="true" />
|
|
31
|
+
<option name="TOC" value="false" />
|
|
32
|
+
<option name="TRACE_PARSER" value="false" />
|
|
33
|
+
<option name="WIKILINKS" value="true" />
|
|
34
|
+
</PegdownExtensions>
|
|
35
|
+
<ParserOptions>
|
|
36
|
+
<option name="COMMONMARK_LISTS" value="false" />
|
|
37
|
+
<option name="DUMMY" value="false" />
|
|
38
|
+
<option name="EMOJI_SHORTCUTS" value="true" />
|
|
39
|
+
<option name="FLEXMARK_FRONT_MATTER" value="false" />
|
|
40
|
+
<option name="GFM_TABLE_RENDERING" value="true" />
|
|
41
|
+
<option name="GITBOOK_URL_ENCODING" value="false" />
|
|
42
|
+
<option name="GITHUB_EMOJI_URL" value="false" />
|
|
43
|
+
<option name="GITHUB_LISTS" value="true" />
|
|
44
|
+
<option name="GITHUB_WIKI_LINKS" value="true" />
|
|
45
|
+
<option name="JEKYLL_FRONT_MATTER" value="false" />
|
|
46
|
+
<option name="SIM_TOC_BLANK_LINE_SPACER" value="true" />
|
|
47
|
+
</ParserOptions>
|
|
48
|
+
</ParserSettings>
|
|
49
|
+
<HtmlSettings headerTopEnabled="false" headerBottomEnabled="false" bodyTopEnabled="false" bodyBottomEnabled="false" embedUrlContent="false" addPageHeader="true">
|
|
50
|
+
<GeneratorProvider>
|
|
51
|
+
<provider providerId="com.vladsch.idea.multimarkdown.editor.swing.html.generator" providerName="Default Swing HTML Generator" />
|
|
52
|
+
</GeneratorProvider>
|
|
53
|
+
<headerTop />
|
|
54
|
+
<headerBottom />
|
|
55
|
+
<bodyTop />
|
|
56
|
+
<bodyBottom />
|
|
57
|
+
</HtmlSettings>
|
|
58
|
+
<CssSettings previewScheme="UI_SCHEME" cssUri="" isCssUriEnabled="false" isCssTextEnabled="false" isDynamicPageWidth="true">
|
|
59
|
+
<StylesheetProvider>
|
|
60
|
+
<provider providerId="com.vladsch.idea.multimarkdown.editor.swing.html.css" providerName="Default Swing Stylesheet" />
|
|
61
|
+
</StylesheetProvider>
|
|
62
|
+
<ScriptProviders />
|
|
63
|
+
<cssText />
|
|
64
|
+
</CssSettings>
|
|
65
|
+
<HtmlExportSettings updateOnSave="false" parentDir="$ProjectFileDir$" targetDir="$ProjectFileDir$" cssDir="" scriptDir="" plainHtml="false" imageDir="" copyLinkedImages="false" imageUniquifyType="0" targetExt="" useTargetExt="false" noCssNoScripts="false" linkToExportedHtml="true" exportOnSettingsChange="true" regenerateOnProjectOpen="false" />
|
|
66
|
+
<LinkMapSettings>
|
|
67
|
+
<textMaps />
|
|
68
|
+
</LinkMapSettings>
|
|
69
|
+
</component>
|
|
70
|
+
</project>
|
package/.idea/modules.xml
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ProjectModuleManager">
|
|
4
|
-
<modules>
|
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/
|
|
6
|
-
</modules>
|
|
7
|
-
</component>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/manticore-labs-nest.iml" filepath="$PROJECT_DIR$/.idea/manticore-labs-nest.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
8
|
</project>
|
package/.idea/vcs.xml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="VcsDirectoryMappings">
|
|
4
|
-
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
|
5
|
-
</component>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="VcsDirectoryMappings">
|
|
4
|
+
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
|
5
|
+
</component>
|
|
6
6
|
</project>
|