Skip to content

Commit 16e8bb7

Browse files
committed
🚧 WIP
1 parent 2cd4ae7 commit 16e8bb7

1 file changed

Lines changed: 16 additions & 5 deletions

File tree

package.json

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ackee-frontend",
33
"displayName": "Ackee frontend",
4-
"description": "A set of usefull snippets and commands we use at Ackee for web apps development.",
4+
"description": "A set of useful snippets and commands we use at Ackee for web apps development.",
55
"version": "0.4.9",
66
"repository": "https://github.com/AckeeCZ/vscode-frontend",
77
"publisher": "ackee",
@@ -73,15 +73,26 @@
7373
"type": "boolean",
7474
"default": false,
7575
"description": "If enabled, scaffolded components will be in TypeScript."
76+
},
77+
"ackeeFrontend.typescriptFelaTheme": {
78+
"type": "boolean",
79+
"default": false,
80+
"description": "If enabled, scaffolded styles of components will have `TRuleWithTheme` instead of simple `TRule` (`typescript` option must be enabled)"
81+
},
82+
"ackeeFrontend.typescriptFelaExtendProp": {
83+
"type": "boolean",
84+
"default": false,
85+
"description": "If enabled, scaffolded interfaces of components will have `extend` prop. (`typescript` option must enabled)."
7686
}
7787
}
7888
}
7989
},
8090
"scripts": {
81-
"vscode:prepublish": "npm run build-base -- --minify",
82-
"build-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
83-
"build": "npm run build-base -- --sourcemap",
84-
"build-watch": "npm run build-base -- --sourcemap --watch",
91+
"vscode:prepublish": "yarn build-base --minify",
92+
"clean": "rm -rf out *.vsix",
93+
"build-base": "yarn clean; esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
94+
"build": "yarn build-base --sourcemap",
95+
"build-watch": "yarn build-base --sourcemap --watch",
8596
"test-compile": "tsc -p ./",
8697
"version": "changelog-it && code --wait CHANGELOG.md && git add CHANGELOG.md",
8798
"package": "vsce package"

0 commit comments

Comments
 (0)