Skip to content

Commit

Permalink
Merge pull request #130 from nolanlawson/fix-tests
Browse files Browse the repository at this point in the history
Fix tests
  • Loading branch information
EtienneLem authored Oct 6, 2017
2 parents f8e824e + 26017eb commit 9e81cc4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ node_modules/
dist/
dist-es/
bundle.js
/src/data/data.js
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,26 +62,26 @@
"webpack": "^3.6.0"
},
"scripts": {
"clean": "rm -rf dist/ dist-es/",
"clean": "rm -rf dist/ dist-es/ src/data/data.js",
"build:data": "node scripts/build-data",
"build:dist": "npm run clean && npm run build:cjs && npm run build:es",
"build:dist": "npm run build:cjs && npm run build:es",
"build:cjs": "BABEL_ENV=cjs babel src --out-dir dist --copy-files --ignore webpack.config.js",
"build:es": "babel src --out-dir dist-es --copy-files --ignore webpack.config.js",
"build": "npm run build:dist && npm run build:data",
"build": "npm run clean && npm run build:data && npm run build:dist",
"watch": "BABEL_ENV=cjs babel src --watch --out-dir dist --copy-files --ignore webpack.config.js",
"start": "npm run watch",
"stats": "webpack --config ./src/webpack.config.js --json > stats.json",
"react:clean": "rimraf node_modules/{react,react-dom,react-addons-test-utils}",
"react:14": "npm run react:clean && npm i react@^0.14 react-dom@^0.14 react-addons-test-utils@^0.14 --save-dev",
"react:15": "npm run react:clean && npm i react@^15 react-dom@^15 react-addons-test-utils@^15 --save-dev",
"test": "NODE_ENV=test karma start && size-limit",
"prepublish": "npm run clean && npm run build",
"prepublish": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"size-limit": [
{
"path": "dist/index.js",
"path": "dist-es/index.js",
"limit": "80 KB"
}
]
Expand Down
5 changes: 1 addition & 4 deletions scripts/build-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,6 @@ flags.emojis = flags.emojis.filter((flag) => {
}).sort()

const stringified = JSON.stringify(data).replace(/\"([A-Za-z_]+)\":/g, '$1:')
fs.writeFile('dist/data/data.js', `module.exports = ${stringified}`, (err) => {
fs.writeFile('src/data/data.js', `export default ${stringified}`, (err) => {
if (err) throw err
fs.writeFile('dist-es/data/data.js', `export default ${stringified}`, (err) => {
if (err) throw err
})
})

0 comments on commit 9e81cc4

Please sign in to comment.