@schemastore/compilerdefaults 0.0.4 → 0.0.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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) Florian Keller. All rights reserved.
3
+ Copyright (c) Florian Imdahl. All rights reserved.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -8,5 +8,5 @@ This package contains type definitions for compilerdefaults.
8
8
  Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/compilerdefaults.
9
9
 
10
10
  ## Additional Details
11
- * Last updated: Sat, Jul 04, 2020, 11:00:05 GMT
11
+ * Last updated: Fri, Feb 24, 2023, 11:23:32 GMT
12
12
  * Dependencies: none
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -8,12 +8,13 @@
8
8
  /**
9
9
  * Schema for bundleconfig.json files
10
10
  */
11
- export interface Compilerdefaults {
11
+ export interface HttpsJsonSchemastoreOrgCompilerdefaultsJson {
12
12
  compilers?: {
13
13
  less?: Less;
14
14
  sass?: Sass;
15
15
  stylus?: Stylus;
16
16
  coffeescript?: CoffeeScript;
17
+ handlebars?: Handlebars;
17
18
  [k: string]: unknown;
18
19
  };
19
20
  minifiers?: {
@@ -39,12 +40,16 @@ export interface Less {
39
40
  * LESS only. Currently only used for the data-uri function to ensure that images aren't created that are too large for the browser to handle.
40
41
  */
41
42
  ieCompat?: boolean;
43
+ /**
44
+ * LESS only. Specifies which mode Less will use to process the math in your CSS.
45
+ */
46
+ math?: "always" | "parens-division" | "parens" | "strict" | "strict-legacy";
42
47
  /**
43
48
  * Generates a base64 encoded source map at the bottom of the output.
44
49
  */
45
50
  sourceMap?: boolean;
46
51
  /**
47
- * LESS only. Without this option on Less will try and process all maths in your CSS.
52
+ * (DEPRECATED: Use 'math' instead) LESS only. Without this option on Less will try and process all maths in your CSS.
48
53
  */
49
54
  strictMath?: boolean;
50
55
  /**
@@ -139,6 +144,41 @@ export interface CoffeeScript {
139
144
  sourceMap?: boolean;
140
145
  [k: string]: unknown;
141
146
  }
147
+ /**
148
+ * Specify options for the compiler.
149
+ */
150
+ export interface Handlebars {
151
+ enabled?: boolean;
152
+ /**
153
+ * Removes the BOM (Byte Order Mark) from the beginning of the templates.
154
+ */
155
+ noBOM?: boolean;
156
+ /**
157
+ * Template namespace
158
+ */
159
+ namespace?: string;
160
+ /**
161
+ * Template root. Base value that will be stripped from template names.
162
+ */
163
+ root?: string;
164
+ /**
165
+ * List of known helpers for a more optimized output (comma separated)
166
+ */
167
+ knownHelpers?: string;
168
+ /**
169
+ * Compile with known helpers only
170
+ */
171
+ knownHelpersOnly?: boolean;
172
+ /**
173
+ * Path to the Handlebars module to export CommonJS style
174
+ */
175
+ commonjs?: string;
176
+ /**
177
+ * Exports amd style (require.js), this option has priority to commonjs.
178
+ */
179
+ amd?: boolean;
180
+ [k: string]: unknown;
181
+ }
142
182
  export interface BaseMinify {
143
183
  enabled?: boolean;
144
184
  /**
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "author": "Florian Keller <github@floriankeller.de>",
2
+ "author": "Florian Imdahl <git@ffflorian.de>",
3
3
  "dependencies": {},
4
4
  "description": "TypeScript definitions for compilerdefaults.",
5
5
  "license": "MIT",
@@ -7,8 +7,8 @@
7
7
  "name": "@schemastore/compilerdefaults",
8
8
  "repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/compilerdefaults",
9
9
  "scripts": {},
10
- "typesPublisherContentHash": "b400c5764e21695d23dea02f2ae0033d7f7f2b754bc4b24e6c1c65f359f2be9f",
10
+ "typesPublisherContentHash": "ea6ab194b65d2217fb25a6d9d855ac089a78f9c582999cf5e716a20674f0a509",
11
11
  "types": "index.d.ts",
12
- "version": "0.0.4",
12
+ "version": "0.0.5",
13
13
  "typeScriptVersion": "2.2"
14
14
  }