Skip to content

Commit 4d6adf0

Browse files
author
Patrick Tannoury
committed
changed package.json
1 parent 33068ad commit 4d6adf0

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

package.json

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
11
{
22
"name": "swiftcss",
3-
"version": "3.24.0",
3+
"version": "3.20.0",
44
"description": "A CSS framework inspired by Tailwindcss with attribute styling to split styling and reduce dependency and size of classes in elements and components.",
5-
"main": "main.ts",
5+
"main": "./dist/main.js",
66
"license": "MIT",
77
"homepage": "https://datablock.dev",
8-
"type": "module",
98
"repository": {
109
"type": "git",
1110
"url": "https://github.com/pannoury/SwiftCSS"
1211
},
1312
"scripts": {
14-
"watch": "ts-node --esm main.ts watch",
15-
"build": "ts-node --esm main.ts build",
16-
"init": "ts-node --esm main.ts init"
13+
"watch": "node ./dist/main.js watch",
14+
"build": "node ./dist/main.js build",
15+
"init": "node ./dist/main.js init",
16+
"dev": "ts-node main.ts watch",
17+
"dev-build": "ts-node main.ts build",
18+
"dev-init": "ts-node main.ts init",
19+
"new-dev": "ts-node main.ts dev",
20+
"install": "sh installation.bash"
1721
},
1822
"bin": {
19-
"swiftcss": "main.ts"
23+
"swiftcss": "./dist/main.js"
2024
},
2125
"dependencies": {
2226
"autoprefixer": "^10.4.14",

0 commit comments

Comments
 (0)