Skip to content

Commit

Permalink
style: run prettier (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
simenandre committed May 15, 2023
1 parent 315b7ea commit 1cf9b86
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion cmd/create-bjerk-typescript/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
/* eslint no-console: off */
/* eslint @typescript-eslint/no-var-requires: off */
/* eslint no-undef: off */
import fsExt from 'fs-extra';
import path from 'path';
import * as url from 'url';
import fsExt from 'fs-extra';

const ignoreContent =
(...values) =>
Expand Down
64 changes: 32 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,10 @@
"name": "create-bjerk-typescript",
"version": "4.0.2",
"description": "Minimal typescript project template. Run yarn create bjerk-typescript <app name>",
"keywords": [
"nodejs",
"nodejs-boilerplate",
"typescript",
"typescript-boilerplate",
"starter",
"boilerplate",
"scaffold",
"template"
],
"repository": "github:bjerkio/create-bjerk-typescript",
"license": "Apache-2.0",
"author": "Bjerk AS",
"repository": "github:bjerkio/create-bjerk-typescript",
"type": "module",
"exports": "./dist/main.js",
"types": "./dist/main.d.ts",
"bin": "./cmd/create-bjerk-typescript/index.js",
"scripts": {
"build": "tsc",
Expand All @@ -27,24 +15,7 @@
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage src/**/*"
},
"prettier": "@simenandre/prettier",
"eslintConfig": {
"extends": [
"@bjerk/eslint-config",
"plugin:jest/recommended"
],
"plugins": [
"jest"
],
"overrides": [
{
"files": "jest.config.*",
"rules": {
"import/no-default-export": "off"
}
}
]
},
"types": "./dist/main.d.ts",
"dependencies": {
"fs-extra": "^11.1.0"
},
Expand Down Expand Up @@ -72,10 +43,39 @@
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"packageManager": "yarn@3.5.1",
"keywords": [
"boilerplate",
"nodejs",
"nodejs-boilerplate",
"scaffold",
"starter",
"template",
"typescript",
"typescript-boilerplate"
],
"engines": {
"node": ">=18"
},
"eslintConfig": {
"extends": [
"@bjerk/eslint-config",
"plugin:jest/recommended"
],
"plugins": [
"jest"
],
"overrides": [
{
"files": "jest.config.*",
"rules": {
"import/no-default-export": "off"
}
}
]
},
"exports": "./dist/main.js",
"packageManager": "yarn@3.5.1",
"prettier": "@simenandre/prettier",
"volta": {
"node": "18.16.0",
"yarn": "1.22.19"
Expand Down

0 comments on commit 1cf9b86

Please sign in to comment.