mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-12-22 17:23:22 +01:00
script tweaks
This commit is contained in:
parent
88bbd1fb2f
commit
e0fa761c3b
@ -9,14 +9,14 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"lint:js": "eslint ./gatsby-*.{js,jsx} && eslint ./src/**/*.{js,jsx}",
|
"lint:js": "eslint ./gatsby-*.{js,jsx} && eslint ./src/**/*.{js,jsx}",
|
||||||
"lint:css": "stylelint ./src/**/*.{css,scss}",
|
"lint:css": "stylelint ./src/**/*.{css,scss}",
|
||||||
"lint": "npm run lint:js && npm run lint:css",
|
"lint": "npm run svg && npm run lint:js && npm run lint:css",
|
||||||
"build": "npm run svg && ./node_modules/gatsby/dist/bin/gatsby.js build",
|
"build": "npm run svg && ./node_modules/gatsby/dist/bin/gatsby.js build",
|
||||||
"start": "npm run svg && ./node_modules/gatsby/dist/bin/gatsby.js develop",
|
"start": "npm run svg && ./node_modules/gatsby/dist/bin/gatsby.js develop",
|
||||||
"format": "prettier --write 'src/**/*.{js,jsx}'",
|
"format": "prettier --write 'src/**/*.{js,jsx}'",
|
||||||
"format:css": "prettier-stylelint --write --quiet 'src/**/*.{css,scss}'",
|
"format:css": "prettier-stylelint --write --quiet 'src/**/*.{css,scss}'",
|
||||||
"test": "npm run lint",
|
"test": "npm run lint",
|
||||||
"deploy": "./scripts/deploy.sh",
|
"deploy": "./scripts/deploy.sh",
|
||||||
"new": "node ./scripts/new-project.js",
|
"new": "node ./scripts/new.js",
|
||||||
"svg": "./scripts/svg.sh"
|
"svg": "./scripts/svg.sh"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -4,7 +4,7 @@ const prepend = require('prepend')
|
|||||||
const slugify = require('slugify')
|
const slugify = require('slugify')
|
||||||
const ora = require('ora')
|
const ora = require('ora')
|
||||||
|
|
||||||
const templatePath = path.join(__dirname, 'new-project.yml')
|
const templatePath = path.join(__dirname, 'new.yml')
|
||||||
const template = fs.readFileSync(templatePath).toString()
|
const template = fs.readFileSync(templatePath).toString()
|
||||||
|
|
||||||
const spinner = ora('Adding new project').start()
|
const spinner = ora('Adding new project').start()
|
@ -4,5 +4,9 @@ set -e
|
|||||||
SRC='./src/images'
|
SRC='./src/images'
|
||||||
OUT='./src/components/svg'
|
OUT='./src/components/svg'
|
||||||
|
|
||||||
|
printf "Creating SVG components...\\n\\n"
|
||||||
|
|
||||||
# Usage: svgr [-d out-dir] [src-dir]
|
# Usage: svgr [-d out-dir] [src-dir]
|
||||||
./node_modules/@svgr/cli/bin/svgr --icon -d $OUT $SRC
|
./node_modules/@svgr/cli/bin/svgr --icon -d $OUT $SRC
|
||||||
|
|
||||||
|
printf "\\n🎉 Successfully created SVG components\\n\\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user