We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dfb229 commit b462d3bCopy full SHA for b462d3b
.vscode/launch.json
@@ -0,0 +1,15 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "type": "node",
6
+ "request": "launch",
7
+ "name": "Launch node via yarn & 'start' command",
8
+ "cwd": "${workspaceFolder}",
9
+ "runtimeExecutable": "node",
10
+ "runtimeArgs": [
11
+ "test"
12
+ ]
13
+ }
14
15
+}
package.json
@@ -4,7 +4,9 @@
"author": "Ulyanov Ivan",
"description": "The library for converting CSS to HTML",
"main": "index.js",
- "scripts": {},
+ "scripts": {
+ "test": "node test.js"
+ },
"type": "module",
"repository": {
"type": "git",
@@ -31,4 +33,4 @@
31
33
"html-format": "^1.1.7"
32
34
},
35
"license": "ISC"
-}
36
0 commit comments