simplestyle-js 3.4.0 → 3.4.1
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 +1 -1
- package/dist/cjs/createStyles.cjs +191 -0
- package/dist/cjs/createStyles.d.ts +30 -0
- package/dist/cjs/generateClassName.cjs +62 -0
- package/dist/cjs/generateClassName.d.ts +3 -0
- package/dist/cjs/index.cjs +71 -0
- package/dist/cjs/numToAlpha.cjs +14 -0
- package/dist/cjs/numToAlpha.d.ts +1 -0
- package/dist/cjs/package.json +1 -0
- package/dist/cjs/plugins.cjs +25 -0
- package/dist/cjs/plugins.d.ts +3 -0
- package/dist/cjs/react/index.cjs +18 -0
- package/dist/cjs/react/useCreateStyles.cjs +73 -0
- package/dist/cjs/react/useCreateStyles.d.ts +3 -0
- package/dist/cjs/types.cjs +4 -0
- package/{src/types.ts → dist/cjs/types.d.ts} +1 -3
- package/dist/cjs/util/deepEqual.cjs +27 -0
- package/dist/cjs/util/deepEqual.d.ts +1 -0
- package/dist/cjs/util/index.cjs +18 -0
- package/dist/esm/createStyles.d.ts +30 -0
- package/dist/esm/createStyles.mjs +166 -0
- package/dist/esm/generateClassName.d.ts +3 -0
- package/dist/esm/generateClassName.mjs +36 -0
- package/dist/esm/index.d.ts +6 -0
- package/dist/esm/index.mjs +3 -0
- package/dist/esm/numToAlpha.d.ts +1 -0
- package/dist/esm/numToAlpha.mjs +4 -0
- package/dist/esm/package.json +1 -0
- package/dist/esm/plugins.d.ts +3 -0
- package/dist/esm/plugins.mjs +7 -0
- package/dist/esm/react/index.d.ts +1 -0
- package/dist/esm/react/index.mjs +1 -0
- package/dist/esm/react/useCreateStyles.d.ts +3 -0
- package/dist/esm/react/useCreateStyles.mjs +58 -0
- package/dist/esm/types.d.ts +5 -0
- package/dist/esm/types.mjs +1 -0
- package/dist/esm/util/deepEqual.d.ts +1 -0
- package/dist/esm/util/deepEqual.mjs +17 -0
- package/dist/esm/util/index.d.ts +1 -0
- package/dist/esm/util/index.mjs +1 -0
- package/package.json +4 -1
- package/.coveralls.yml +0 -2
- package/.editorconfig +0 -7
- package/.prettierrc +0 -7
- package/.tool-versions +0 -3
- package/.travis.yml +0 -8
- package/.vscode/launch.json +0 -36
- package/.vscode/settings.json +0 -3
- package/CHANGELOG.md +0 -273
- package/eslint.config.js +0 -3
- package/setup.sh +0 -4
- package/src/createStyles.ts +0 -251
- package/src/generateClassName.ts +0 -43
- package/src/numToAlpha.ts +0 -5
- package/src/plugins.ts +0 -11
- package/src/react/useCreateStyles.ts +0 -58
- package/src/util/deepEqual.ts +0 -20
- package/test/createStyles.spec.ts +0 -330
- package/test/deepEqual.spec.ts +0 -97
- package/test/generateClassName.spec.ts +0 -48
- package/test/keyframes.spec.ts +0 -19
- package/test/plugins.spec.ts +0 -43
- package/test/react/useCreateStyles.spec.tsx +0 -65
- package/test/updateStyles.spec.ts +0 -41
- package/tsconfig.build.json +0 -8
- package/tsconfig.json +0 -37
- package/vite.config.ts +0 -9
- /package/{src/index.ts → dist/cjs/index.d.ts} +0 -0
- /package/{src/react/index.ts → dist/cjs/react/index.d.ts} +0 -0
- /package/{src/util/index.ts → dist/cjs/util/index.d.ts} +0 -0
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
import merge from 'deepmerge';
|
|
2
|
+
import { generateClassName } from './generateClassName.mjs';
|
|
3
|
+
import { getPosthooks } from './plugins.mjs';
|
|
4
|
+
function isNestedSelector(r) {
|
|
5
|
+
return /&/g.test(r);
|
|
6
|
+
}
|
|
7
|
+
function isMedia(r) {
|
|
8
|
+
return r.toLowerCase().startsWith('@media');
|
|
9
|
+
}
|
|
10
|
+
function formatCSSRuleName(rule) {
|
|
11
|
+
return rule.replaceAll(/([A-Z])/g, (p1)=>`-${p1.toLowerCase()}`);
|
|
12
|
+
}
|
|
13
|
+
function formatCSSRules(cssRules) {
|
|
14
|
+
return Object.entries(cssRules).reduce((prev, [cssProp, cssVal])=>`${prev}${formatCSSRuleName(cssProp)}:${String(cssVal)};`, '');
|
|
15
|
+
}
|
|
16
|
+
function execCreateStyles(rules, options, parentSelector, noGenerateClassName = false) {
|
|
17
|
+
const out = {};
|
|
18
|
+
let sheetBuffer = '';
|
|
19
|
+
let mediaQueriesBuffer = '';
|
|
20
|
+
const styleEntries = Object.entries(rules);
|
|
21
|
+
let ruleWriteOpen = false;
|
|
22
|
+
const guardCloseRuleWrite = ()=>{
|
|
23
|
+
if (ruleWriteOpen) sheetBuffer += '}';
|
|
24
|
+
ruleWriteOpen = false;
|
|
25
|
+
};
|
|
26
|
+
for (const [classNameOrCSSRule, classNameRules] of styleEntries){
|
|
27
|
+
// if the classNameRules is a string, we are dealing with a display: none; type rule
|
|
28
|
+
if (isMedia(classNameOrCSSRule)) {
|
|
29
|
+
if (typeof classNameRules !== 'object') throw new Error('Unable to map @media query because rules / props are an invalid type');
|
|
30
|
+
guardCloseRuleWrite();
|
|
31
|
+
mediaQueriesBuffer += `${classNameOrCSSRule}{`;
|
|
32
|
+
const { mediaQueriesBuffer: mediaQueriesOutput, sheetBuffer: regularOutput } = execCreateStyles(classNameRules, options, parentSelector);
|
|
33
|
+
mediaQueriesBuffer += regularOutput;
|
|
34
|
+
mediaQueriesBuffer += '}';
|
|
35
|
+
mediaQueriesBuffer += mediaQueriesOutput;
|
|
36
|
+
} else if (isNestedSelector(classNameOrCSSRule)) {
|
|
37
|
+
if (!parentSelector) throw new Error('Unable to generate nested rule because parentSelector is missing');
|
|
38
|
+
guardCloseRuleWrite();
|
|
39
|
+
// format of { '& > span': { display: 'none' } } (or further nesting)
|
|
40
|
+
const replaced = classNameOrCSSRule.replaceAll('&', parentSelector);
|
|
41
|
+
for (const selector of replaced.split(/,\s*/)){
|
|
42
|
+
const { mediaQueriesBuffer: mediaQueriesOutput, sheetBuffer: regularOutput } = execCreateStyles(classNameRules, options, selector);
|
|
43
|
+
sheetBuffer += regularOutput;
|
|
44
|
+
mediaQueriesBuffer += mediaQueriesOutput;
|
|
45
|
+
}
|
|
46
|
+
} else if (!parentSelector && typeof classNameRules === 'object') {
|
|
47
|
+
guardCloseRuleWrite();
|
|
48
|
+
const generated = noGenerateClassName ? classNameOrCSSRule : generateClassName(classNameOrCSSRule);
|
|
49
|
+
// @ts-expect-error - yes, we can index this object here, so be quiet
|
|
50
|
+
out[classNameOrCSSRule] = generated;
|
|
51
|
+
const generatedSelector = `${noGenerateClassName ? '' : '.'}${generated}`;
|
|
52
|
+
const { mediaQueriesBuffer: mediaQueriesOutput, sheetBuffer: regularOutput } = execCreateStyles(classNameRules, options, generatedSelector);
|
|
53
|
+
sheetBuffer += regularOutput;
|
|
54
|
+
mediaQueriesBuffer += mediaQueriesOutput;
|
|
55
|
+
} else {
|
|
56
|
+
if (!parentSelector) throw new Error('Unable to write css props because parent selector is null');
|
|
57
|
+
if (ruleWriteOpen) {
|
|
58
|
+
sheetBuffer += formatCSSRules({
|
|
59
|
+
[classNameOrCSSRule]: classNameRules
|
|
60
|
+
});
|
|
61
|
+
} else {
|
|
62
|
+
sheetBuffer += `${parentSelector}{${formatCSSRules({
|
|
63
|
+
[classNameOrCSSRule]: classNameRules
|
|
64
|
+
})}`;
|
|
65
|
+
ruleWriteOpen = true;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
guardCloseRuleWrite();
|
|
70
|
+
return {
|
|
71
|
+
classes: out,
|
|
72
|
+
sheetBuffer,
|
|
73
|
+
mediaQueriesBuffer
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
function replaceBackReferences(out, sheetContents) {
|
|
77
|
+
let outputSheetContents = sheetContents;
|
|
78
|
+
const toReplace = [];
|
|
79
|
+
const toReplaceRegex = /\$\w([a-zA-Z0-9_-]+)?/gm;
|
|
80
|
+
let matches = toReplaceRegex.exec(outputSheetContents);
|
|
81
|
+
while(matches){
|
|
82
|
+
toReplace.push(matches[0].valueOf());
|
|
83
|
+
matches = toReplaceRegex.exec(outputSheetContents);
|
|
84
|
+
}
|
|
85
|
+
for (const r of toReplace){
|
|
86
|
+
outputSheetContents = outputSheetContents.replace(r, `.${out[r.slice(1)] ?? ''}`);
|
|
87
|
+
}
|
|
88
|
+
return getPosthooks().reduce((prev, hook)=>hook(prev), outputSheetContents);
|
|
89
|
+
}
|
|
90
|
+
function createSheet(sheetContents) {
|
|
91
|
+
const doc = globalThis.document;
|
|
92
|
+
if (doc === undefined) return null;
|
|
93
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
94
|
+
if (typeof doc?.head?.appendChild !== 'function' || typeof doc.createElement !== 'function') return null;
|
|
95
|
+
const styleTag = doc.createElement('style');
|
|
96
|
+
styleTag.innerHTML = sheetContents;
|
|
97
|
+
return styleTag;
|
|
98
|
+
}
|
|
99
|
+
function flushSheetContents(sheetContents, options) {
|
|
100
|
+
// In case we're in come weird test environment that doesn't support JSDom
|
|
101
|
+
const styleTag = createSheet(sheetContents);
|
|
102
|
+
if (styleTag) {
|
|
103
|
+
if (options?.insertAfter && options.insertBefore) {
|
|
104
|
+
throw new Error('Both insertAfter and insertBefore were provided. Please choose only one.');
|
|
105
|
+
}
|
|
106
|
+
if (options?.insertAfter?.after) options.insertAfter.after(styleTag);
|
|
107
|
+
else if (options?.insertBefore?.before) options.insertBefore.before(styleTag);
|
|
108
|
+
else document.head.append(styleTag);
|
|
109
|
+
}
|
|
110
|
+
return styleTag;
|
|
111
|
+
}
|
|
112
|
+
function coerceCreateStylesOptions(options) {
|
|
113
|
+
return {
|
|
114
|
+
flush: options && typeof options.flush === 'boolean' ? options.flush : true
|
|
115
|
+
};
|
|
116
|
+
}
|
|
117
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
118
|
+
export function rawStyles(rules, options) {
|
|
119
|
+
const coerced = coerceCreateStylesOptions(options);
|
|
120
|
+
const { sheetBuffer: sheetContents, mediaQueriesBuffer: mediaQueriesContents } = execCreateStyles(rules, coerced, null, true);
|
|
121
|
+
const mergedContents = `${sheetContents}${mediaQueriesContents}`;
|
|
122
|
+
if (coerced.flush) flushSheetContents(mergedContents, options);
|
|
123
|
+
return mergedContents;
|
|
124
|
+
}
|
|
125
|
+
export function keyframes(frames, options) {
|
|
126
|
+
const coerced = coerceCreateStylesOptions(options);
|
|
127
|
+
const keyframeName = generateClassName('keyframes_');
|
|
128
|
+
const { sheetBuffer: keyframesContents } = execCreateStyles(frames, coerced, null, true);
|
|
129
|
+
const sheetContents = `@keyframes ${keyframeName}{${keyframesContents}}`;
|
|
130
|
+
if (coerced.flush) flushSheetContents(sheetContents);
|
|
131
|
+
return [
|
|
132
|
+
keyframeName,
|
|
133
|
+
sheetContents
|
|
134
|
+
];
|
|
135
|
+
}
|
|
136
|
+
export default function createStyles(rules, options) {
|
|
137
|
+
const coerced = coerceCreateStylesOptions(options);
|
|
138
|
+
const { classes: out, sheetBuffer: sheetContents, mediaQueriesBuffer: mediaQueriesContents } = execCreateStyles(rules, coerced, null);
|
|
139
|
+
const mergedContents = `${sheetContents}${mediaQueriesContents}`;
|
|
140
|
+
const replacedSheetContents = replaceBackReferences(out, mergedContents);
|
|
141
|
+
let sheet = null;
|
|
142
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
143
|
+
const updateSheet = (updatedRules)=>{
|
|
144
|
+
if (options?.flush && sheet || !options?.flush) {
|
|
145
|
+
// We prefer the first set, and then we shallow merge
|
|
146
|
+
const { classes: updatedOut, sheetBuffer: updatedSheetContents, mediaQueriesBuffer: updatedMediaQueriesContents } = execCreateStyles(merge(rules, updatedRules), {
|
|
147
|
+
flush: false
|
|
148
|
+
}, null);
|
|
149
|
+
const updatedMergedContents = `${updatedSheetContents}${updatedMediaQueriesContents}`;
|
|
150
|
+
const updatedReplacedSheetContents = replaceBackReferences(out, updatedMergedContents);
|
|
151
|
+
if (sheet) sheet.innerHTML = updatedReplacedSheetContents;
|
|
152
|
+
return {
|
|
153
|
+
classes: updatedOut,
|
|
154
|
+
stylesheet: updatedSheetContents
|
|
155
|
+
};
|
|
156
|
+
}
|
|
157
|
+
return null;
|
|
158
|
+
};
|
|
159
|
+
if (coerced.flush) sheet = flushSheetContents(replacedSheetContents, options);
|
|
160
|
+
// Need this TS cast to get solid code assist from the consumption-side
|
|
161
|
+
return {
|
|
162
|
+
classes: out,
|
|
163
|
+
stylesheet: replacedSheetContents,
|
|
164
|
+
updateSheet
|
|
165
|
+
};
|
|
166
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import numToAlpha from './numToAlpha.mjs';
|
|
2
|
+
let inc = Date.now();
|
|
3
|
+
export function setSeed(seed) {
|
|
4
|
+
if (seed === null) {
|
|
5
|
+
inc = Date.now();
|
|
6
|
+
return;
|
|
7
|
+
}
|
|
8
|
+
if (typeof seed !== 'number') throw new Error('Unable to setSeed as provided seed was not a valid number');
|
|
9
|
+
if (seed === Number.MAX_SAFE_INTEGER) throw new Error('Unable to setSeed because the seed was already the maximum safe JavaScript number allowed');
|
|
10
|
+
if (seed === Number.POSITIVE_INFINITY || seed === Number.NEGATIVE_INFINITY) throw new Error('Unable to setSeed. Positive or negative infinity is not allowed');
|
|
11
|
+
if (seed < 0) throw new Error('Unable to setSeed. Seed must be a number >= 0');
|
|
12
|
+
inc = seed;
|
|
13
|
+
}
|
|
14
|
+
const numPairsRegex = /(\d{1,2})/g;
|
|
15
|
+
export function getUniqueSuffix() {
|
|
16
|
+
const numPairs = [];
|
|
17
|
+
const incStr = inc.toString();
|
|
18
|
+
let result = numPairsRegex.exec(incStr);
|
|
19
|
+
while(result){
|
|
20
|
+
numPairs.push(result[0]);
|
|
21
|
+
result = numPairsRegex.exec(incStr);
|
|
22
|
+
}
|
|
23
|
+
let out = '_';
|
|
24
|
+
for (const pair of numPairs){
|
|
25
|
+
const val = +pair;
|
|
26
|
+
if (val > 25) {
|
|
27
|
+
const [first, second] = pair.split('');
|
|
28
|
+
out += `${numToAlpha(Number(first))}${numToAlpha(Number(second))}`;
|
|
29
|
+
} else out += numToAlpha(val);
|
|
30
|
+
}
|
|
31
|
+
inc += 1;
|
|
32
|
+
return out;
|
|
33
|
+
}
|
|
34
|
+
export function generateClassName(c) {
|
|
35
|
+
return `${c}${getUniqueSuffix()}`;
|
|
36
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export type { CreateStylesArgs, CreateStylesOptions } from './createStyles.js';
|
|
2
|
+
export { default as createStyles, keyframes, rawStyles } from './createStyles.js';
|
|
3
|
+
export { setSeed } from './generateClassName.js';
|
|
4
|
+
export type { PosthookPlugin } from './plugins.js';
|
|
5
|
+
export { registerPosthook } from './plugins.js';
|
|
6
|
+
export type { SimpleStyleRules } from './types.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function numToAlpha(num: number): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{ "type": "module" }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './useCreateStyles.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './useCreateStyles.mjs';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CreateStylesOptions } from '../createStyles.js';
|
|
2
|
+
import { SimpleStyleRules } from '../types.js';
|
|
3
|
+
export declare function useCreateStyles<T extends SimpleStyleRules, K extends keyof T, O extends Record<K, string>>(rules: T, options?: Partial<Omit<CreateStylesOptions, 'flush'>>): O;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { useEffect, useMemo, useRef, useState } from 'react';
|
|
2
|
+
import createStyles from '../createStyles.mjs';
|
|
3
|
+
import { deepEqual } from '../util/index.mjs';
|
|
4
|
+
export function useCreateStyles(rules, options) {
|
|
5
|
+
// cache rules to compare later
|
|
6
|
+
const [cachedRules, setCachedRules] = useState(()=>rules);
|
|
7
|
+
// memoize options but keep them live
|
|
8
|
+
const cachedOptions = useMemo(()=>({
|
|
9
|
+
...options
|
|
10
|
+
}), [
|
|
11
|
+
options
|
|
12
|
+
]);
|
|
13
|
+
const didFirstWriteRef = useRef(false);
|
|
14
|
+
const styleTagRef = useRef(typeof document === 'undefined' ? null : document.createElement('style'));
|
|
15
|
+
// initialize styles
|
|
16
|
+
const [styleState, setStyleState] = useState(()=>createStyles(rules, {
|
|
17
|
+
...cachedOptions,
|
|
18
|
+
flush: false
|
|
19
|
+
}));
|
|
20
|
+
const { classes, stylesheet, updateSheet } = styleState;
|
|
21
|
+
// mount/unmount style tag
|
|
22
|
+
useEffect(()=>{
|
|
23
|
+
if (!styleTagRef.current) return;
|
|
24
|
+
const { current: s } = styleTagRef;
|
|
25
|
+
document.head.append(s);
|
|
26
|
+
return ()=>{
|
|
27
|
+
s.remove();
|
|
28
|
+
};
|
|
29
|
+
}, []);
|
|
30
|
+
// update stylesheet when rules change
|
|
31
|
+
useEffect(()=>{
|
|
32
|
+
if (!styleTagRef.current) return;
|
|
33
|
+
if (!didFirstWriteRef.current) {
|
|
34
|
+
didFirstWriteRef.current = true;
|
|
35
|
+
styleTagRef.current.innerHTML = stylesheet;
|
|
36
|
+
return;
|
|
37
|
+
}
|
|
38
|
+
if (!deepEqual(rules, cachedRules)) {
|
|
39
|
+
setCachedRules(rules);
|
|
40
|
+
const updated = updateSheet(rules);
|
|
41
|
+
if (updated) {
|
|
42
|
+
styleTagRef.current.innerHTML = updated.stylesheet;
|
|
43
|
+
// use the fresh updateSheet from updated
|
|
44
|
+
// @ts-expect-error - this cast is safe and is only for us, internally, anyways
|
|
45
|
+
setStyleState({
|
|
46
|
+
...updated,
|
|
47
|
+
updateSheet
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}, [
|
|
52
|
+
cachedRules,
|
|
53
|
+
rules,
|
|
54
|
+
stylesheet,
|
|
55
|
+
updateSheet
|
|
56
|
+
]); // only depend on rules + updater
|
|
57
|
+
return classes;
|
|
58
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function deepEqual<O1 extends Record<string | number | symbol, any>, O2 extends Record<string | number | symbol, any>>(o1: O1, o2: O2): boolean;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export function deepEqual(o1, o2) {
|
|
2
|
+
// We'll sort the keys, just in case the user kept things the same but the object is all wonky, order-wise
|
|
3
|
+
const o1Keys = Object.keys(o1).sort();
|
|
4
|
+
const o2Keys = Object.keys(o2).sort();
|
|
5
|
+
if (o1Keys.length !== o2Keys.length) return false;
|
|
6
|
+
if (o1Keys.some((key, i)=>o2Keys[i] !== key)) return false;
|
|
7
|
+
// Okay, the keys SHOULD be the same
|
|
8
|
+
// so we need to test their values, recursively, to verify equality
|
|
9
|
+
return o1Keys.reduce((prev, key)=>{
|
|
10
|
+
if (!prev) return prev; // we've already failed equality checks here
|
|
11
|
+
if (!(key in o2)) return false;
|
|
12
|
+
if (typeof o1[key] !== 'object') {
|
|
13
|
+
return o1[key] === o2[key];
|
|
14
|
+
}
|
|
15
|
+
return deepEqual(o1[key], o2[key]);
|
|
16
|
+
}, true);
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './deepEqual.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './deepEqual.mjs';
|
package/package.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simplestyle-js",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.1",
|
|
4
4
|
"description": "An incredibly straightforward and simple CSS-in-JS solution with zero runtime dependencies, and out-of-the-box TypeScript support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/benduran/simplestyle.git"
|
|
9
9
|
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/**"
|
|
12
|
+
],
|
|
10
13
|
"scripts": {
|
|
11
14
|
"build": "bun run clean && bun run build:package",
|
|
12
15
|
"build:package": "ts-duality --clean",
|
package/.coveralls.yml
DELETED
package/.editorconfig
DELETED
package/.prettierrc
DELETED
package/.tool-versions
DELETED
package/.travis.yml
DELETED
package/.vscode/launch.json
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
// Use IntelliSense to learn about possible attributes.
|
|
3
|
-
// Hover to view descriptions of existing attributes.
|
|
4
|
-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
5
|
-
"version": "0.2.0",
|
|
6
|
-
"configurations": [
|
|
7
|
-
{
|
|
8
|
-
"name": "Attach",
|
|
9
|
-
"port": 9229,
|
|
10
|
-
"request": "attach",
|
|
11
|
-
"skipFiles": [
|
|
12
|
-
"<node_internals>/**"
|
|
13
|
-
],
|
|
14
|
-
"type": "pwa-node"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"type": "node",
|
|
18
|
-
"request": "launch",
|
|
19
|
-
"name": "Jest Current File",
|
|
20
|
-
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
|
21
|
-
"args": [
|
|
22
|
-
"${fileBasenameNoExtension}",
|
|
23
|
-
"--config",
|
|
24
|
-
"jest.config.js",
|
|
25
|
-
"--env",
|
|
26
|
-
"jsdom"
|
|
27
|
-
],
|
|
28
|
-
"console": "integratedTerminal",
|
|
29
|
-
"internalConsoleOptions": "neverOpen",
|
|
30
|
-
"disableOptimisticBPs": true,
|
|
31
|
-
"windows": {
|
|
32
|
-
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
]
|
|
36
|
-
}
|
package/.vscode/settings.json
DELETED