Skip to content

Commit

Permalink
add .npmignore
Browse files Browse the repository at this point in the history
  • Loading branch information
erossignon committed Jan 15, 2017
1 parent 8189b6b commit 6d76103
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 74 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,5 @@ dist
node-occ-package*
extrudedFace.step
lib/binding
*.tgz
npm-debug*
30 changes: 30 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
build*/
sample/
dist/
sample_angular2
oce
test_electron
.eslintrc
a.txt
extrudedFace.step
jasmine*
Jasmine*
npm-debug*
*.sh
*.bat
t.js
Gruntfile.js
#.gitmodules
Makefile
.travis.yml
appveyor.yml
*.tgz
*.zip
src
node-occ-package2
.gitattributes
.idea
*.step



3 changes: 2 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ matrix:


install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) $env:platform;
#- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) $env:platform;
- ps: Install-Product node $env:nodejs_version $env:platform;
- ps: $env:Path += ";$(pwd)\node_modules\.bin";

# Check if we're building the latest tag, if so
Expand Down
6 changes: 3 additions & 3 deletions bin/STEPtoBREP.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@

var occ = require('../lib/occ')
var occ = require('../lib/occ');

var pace = require("pace")(1000)
var pace = require("pace")(1000);

filename = process.argv[2];

occ.readSTEP(filename,function (err,solids) {
pace.op(100000)
pace.op(100000);
if (!err) {
console.log( " \n\ndone y----> ", solids.length , " solids read");

Expand Down
1 change: 0 additions & 1 deletion lib/occ.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,3 @@ occ.Edge.prototype.toString = function () {
"}";
};


6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"pace": "~0.0.4",
"progress": "~1.1.8",
"temporary": "~0.0.8",
"node-pre-gyp": "0.6.x"
"node-pre-gyp": "0.6.x",
"should": "~11.1.2"
},
"devDependencies": {
"aws-sdk": "2.x",
Expand All @@ -24,14 +25,13 @@
"grunt-docco": "~0.5.0",
"grunt-mocha-cli": "~3.0.0",
"mocha": "~3.2.0",
"should": "~11.1.2",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-require-path-exists": "^1.1.5",
"eslint-plugin-standard": "^2.0.1"
},
"main": "lib/occ",
"main": "index",
"author": {
"name": "Etienne Rossignon"
},
Expand Down
66 changes: 0 additions & 66 deletions t2.js

This file was deleted.

0 comments on commit 6d76103

Please sign in to comment.