Skip to content

Commit

Permalink
build(package.json): Fix configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
hrenaud (NovaGaïa) committed Sep 22, 2022
1 parent 4c38ed9 commit 10bf342
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@
"name": "gatsby-plugin-rgpd-acceptance",
"version": "2.1.3",
"description": "A minimal plugin to add all tiers-scripts and accept them.",
"main": "dist/rgpd-acceptance.js",
"module": "dist/rgpd-acceptance.js",
"main": "rgpd-acceptance.js",
"module": "rgpd-acceptance.js",
"files": [
"dist"
"components","utils","styles","gatsby-browser.js","gatsby-node.js","gatsby-ssr.js"
],
"scripts": {
"build": "babel src --out-dir . --ignore \"**/__tests__\"",
"watch": "babel -w src --out-dir . --ignore \"**/__tests__\"",
"build": "npm run prepare-css && babel src --out-dir . --ignore \"**/__tests__\"",
"watch": "npm run prepare-css && babel -w src --out-dir . --ignore \"**/__tests__\"",
"prepare": "cross-env NODE_ENV=production npm run build",
"test:pack": "npm pack",
"prepare-css": "cp -r ./src/styles .",
"release": "release-it"
},
"repository": {
Expand Down

0 comments on commit 10bf342

Please sign in to comment.