Skip to content

Commit

Permalink
🔧 Updated package files
Browse files Browse the repository at this point in the history
  • Loading branch information
OfficialCRUGG committed Oct 1, 2022
1 parent b419b3d commit a45ac30
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions package.dist.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "@blazingworks/utils",
"version": "1.0.0",
"description": "Various development utilities by BlazingWorks",
"main": "index.js",
"types": "index.d.ts",
"repository": "https://github.com/blazingworks/utils.git",
"author": "BlazingWorks",
"license": "MIT",
"private": false
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
"name": "@blazingworks/utils",
"version": "1.0.0",
"description": "Various development utilities by BlazingWorks",
"main": "dist/utils.js",
"types": "dist/utils.d.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": "https://github.com/blazingworks/utils.git",
"author": "BlazingWorks",
"license": "MIT",
"private": false,
"private": true,
"scripts": {
"build": "rimraf dist && tsc && npm run build:after",
"build:after": "cp package.dist.json dist/package.json && cp README.md dist/README.md && cp LICENSE dist/LICENSE && cp TRANSPORTS.md dist/TRANSPORTS.md",
"build:after": "cp package.dist.json dist/package.json && cp README.md dist/README.md && cp LICENSE dist/LICENSE",
"prettier": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src/**/*.ts",
"prettier:ci": "prettier --check \"src/**/*.ts\"",
Expand Down

0 comments on commit a45ac30

Please sign in to comment.