Browse Source

publish dist folder

mightyplow 7 years ago
parent
commit
fca9f510e3
2 changed files with 26 additions and 6 deletions
  1. 20 0
      bin/createPackageJson.js
  2. 6 6
      package.json

+ 20 - 0
bin/createPackageJson.js

@@ -0,0 +1,20 @@
+#!/usr/bin/env node
+const { filter } = require('../dist/object');
+
+const ignoredFields = [
+    'private',
+    'devDependencies',
+    'scripts',
+    'babel'
+];
+
+const isNotIgnored = (key, value) => ignoredFields.indexOf(key) < 0;
+
+const sourceFileContent = require('../package.json');
+const targetFileContent = filter(sourceFileContent, isNotIgnored);
+
+const { writeFileSync } = require('fs');
+const targetFilename = 'dist/package.json';
+writeFileSync(targetFilename, JSON.stringify(targetFileContent, null, 3));
+
+

+ 6 - 6
package.json

@@ -1,8 +1,9 @@
 {
   "name": "@mightyplow/jslib",
-  "version": "0.9.7",
-  "description": "js, helpers library",
+  "version": "0.9.8",
+  "description": "js helpers library",
   "main": "dist/index.js",
+  "private": true,
   "devDependencies": {
     "babel-cli": "^6.26.0",
     "babel-preset-es2015": "^6.22.0",
@@ -10,14 +11,13 @@
     "rimraf": "^2.6.1"
   },
   "scripts": {
+    "createPackageJson": "node bin/createPackageJson.js",
     "nodeunit": "nodeunit",
     "test": "nodeunit tests",
     "build": "rimraf dist && babel src -d dist",
-    "prebublish": "npm run test && npm run build"
+    "prebublish": "npm run test && npm run build && npm run createPackageJson",
+    "publish": "cd dist && npm publish"
   },
-  "files": [
-    "dist"
-  ],
   "keywords": [
     "js",
     "javascript",