Skip to content

Commit ae3450c

Browse files
committed
1.3.4
1 parent 6c7eced commit ae3450c

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-typing-animation",
3-
"version": "1.3.3",
3+
"version": "1.3.4",
44
"author": "Adam King https://github.com/adamjking3",
55
"homepage": "https://adamjking3.github.io/react-typing-animation-example/",
66
"repository": "github:adamjking3/react-typing-animation",
@@ -15,10 +15,8 @@
1515
"typer"
1616
],
1717
"scripts": {
18-
"build":
19-
"mkdir -p ./dist && NODE_ENV=production babel ./src --out-dir ./dist",
20-
"build:example":
21-
"npm run clean && webpack --progress --config ./example/webpack.config.js",
18+
"build": "mkdir -p ./dist && NODE_ENV=production babel ./src --out-dir ./dist",
19+
"build:example": "npm run clean && webpack --progress --config ./example/webpack.config.js",
2220
"clean": "rimraf ./example/build/* && npm run lint",
2321
"lint": "eslint --ignore-path .gitignore .",
2422
"start": "NODE_ENV=development node ./example/webpack-dev-server.js",
@@ -71,16 +69,25 @@
7169
},
7270
"main": "./dist/index.js",
7371
"babel": {
74-
"presets": ["env", "react-app"]
72+
"presets": [
73+
"env",
74+
"react-app"
75+
]
7576
},
7677
"eslintConfig": {
77-
"extends": ["react-app", "prettier"]
78+
"extends": [
79+
"react-app",
80+
"prettier"
81+
]
7882
},
7983
"prettier": {
8084
"singleQuote": true,
8185
"trailingComma": "es5",
8286
"tabWidth": 2,
8387
"useTabs": false
8488
},
85-
"eslintIgnore": ["dist", "example/build"]
89+
"eslintIgnore": [
90+
"dist",
91+
"example/build"
92+
]
8693
}

0 commit comments

Comments
 (0)