@schemastore/bootstraprc 0.0.2
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/LICENSE +21 -0
- package/README.md +12 -0
- package/index.d.ts +89 -0
- package/package.json +14 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Florian Imdahl. All rights reserved.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE
|
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Installation
|
|
2
|
+
> `npm install --save @schemastore/bootstraprc`
|
|
3
|
+
|
|
4
|
+
# Summary
|
|
5
|
+
This package contains type definitions for bootstraprc.
|
|
6
|
+
|
|
7
|
+
## Details
|
|
8
|
+
Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/bootstraprc.
|
|
9
|
+
|
|
10
|
+
## Additional Details
|
|
11
|
+
* Last updated: Wed, Apr 20, 2022, 07:13:18 GMT
|
|
12
|
+
* Dependencies: none
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/**
|
|
3
|
+
* This file was automatically generated by json-schema-to-typescript.
|
|
4
|
+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
5
|
+
* and run json-schema-to-typescript to regenerate this file.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
export type JSONSchemaForWebpackSBootstrapLoaderConfigurationFile = CoreProperties &
|
|
9
|
+
(
|
|
10
|
+
| {
|
|
11
|
+
/**
|
|
12
|
+
* Sets the extractStyles property based on the value of NODE_ENV
|
|
13
|
+
*/
|
|
14
|
+
env?: {
|
|
15
|
+
development?: ExtractStyling;
|
|
16
|
+
production?: ExtractStyling;
|
|
17
|
+
[k: string]: unknown;
|
|
18
|
+
};
|
|
19
|
+
[k: string]: unknown;
|
|
20
|
+
}
|
|
21
|
+
| {
|
|
22
|
+
/**
|
|
23
|
+
* Enables/disables extraction of styles to a standalone CSS file using extract-text-webpack-plugin
|
|
24
|
+
*/
|
|
25
|
+
extractStyles?: boolean;
|
|
26
|
+
[k: string]: unknown;
|
|
27
|
+
}
|
|
28
|
+
) & {
|
|
29
|
+
[k: string]: unknown;
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export interface CoreProperties {
|
|
33
|
+
/**
|
|
34
|
+
* Import your custom styles here. Usually this endpoint file contains a list of @imports of your application styles.
|
|
35
|
+
*/
|
|
36
|
+
appStyles?: string;
|
|
37
|
+
/**
|
|
38
|
+
* The .scss file path to be loaded after Bootstrap's _variables.scss file
|
|
39
|
+
*/
|
|
40
|
+
bootstrapCustomizations?: string;
|
|
41
|
+
/**
|
|
42
|
+
* The major version of Bootstrap being used
|
|
43
|
+
*/
|
|
44
|
+
bootstrapVersion?: 3 | 4;
|
|
45
|
+
/**
|
|
46
|
+
* The verbosity of logging. Exclude this property to disable.
|
|
47
|
+
*/
|
|
48
|
+
loglevel?: "debug";
|
|
49
|
+
/**
|
|
50
|
+
* The .scss file path to be loaded before Bootstrap's _variables.scss file
|
|
51
|
+
*/
|
|
52
|
+
preBootstrapCustomizations?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Excludes/includes Bootstrap's JavaScript modules
|
|
55
|
+
*/
|
|
56
|
+
scripts?:
|
|
57
|
+
| boolean
|
|
58
|
+
| {
|
|
59
|
+
[k: string]: unknown;
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* An array of Webpack loader names. Order matters, and sass-loader is required.
|
|
63
|
+
*/
|
|
64
|
+
styleLoaders?: [string, ...string[]];
|
|
65
|
+
/**
|
|
66
|
+
* Excludes/includes Bootstrap's CSS modules
|
|
67
|
+
*/
|
|
68
|
+
styles?:
|
|
69
|
+
| boolean
|
|
70
|
+
| {
|
|
71
|
+
[k: string]: unknown;
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* Set to true if using a custom icon font and you need to specify its path in your Sass files
|
|
75
|
+
*/
|
|
76
|
+
useCustomIconFontPath?: boolean;
|
|
77
|
+
/**
|
|
78
|
+
* Enables/disables the flexbox model available in Bootstrap 4
|
|
79
|
+
*/
|
|
80
|
+
useFlexbox?: boolean;
|
|
81
|
+
[k: string]: unknown;
|
|
82
|
+
}
|
|
83
|
+
export interface ExtractStyling {
|
|
84
|
+
/**
|
|
85
|
+
* Enables/disables extraction of styles to a standalone CSS file using extract-text-webpack-plugin
|
|
86
|
+
*/
|
|
87
|
+
extractStyles?: boolean;
|
|
88
|
+
[k: string]: unknown;
|
|
89
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"author": "Florian Imdahl <git@ffflorian.de>",
|
|
3
|
+
"dependencies": {},
|
|
4
|
+
"description": "TypeScript definitions for bootstraprc.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"main": "index.d.ts",
|
|
7
|
+
"name": "@schemastore/bootstraprc",
|
|
8
|
+
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/bootstraprc",
|
|
9
|
+
"scripts": {},
|
|
10
|
+
"typesPublisherContentHash": "b4389cd91524875d61ccbe10a181897875c298e84e0279a62814d8a57bbcbcbd",
|
|
11
|
+
"types": "index.d.ts",
|
|
12
|
+
"version": "0.0.2",
|
|
13
|
+
"typeScriptVersion": "2.2"
|
|
14
|
+
}
|