Skip to content

Commit cc91d56

Browse files
committed
fix: Move outputs to the main directory for better access.
1 parent fba9ddc commit cc91d56

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
.idea
2-
build
2+
/cep.js**
3+
/index.js**
4+
/csinterface.js**
35

46
### Node template
57
# Logs

.neutrinorc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module.exports = {
22
options: {
3+
output: '.',
34
mains: {
45
index: 'index',
56
cep: 'cep',

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
"name": "cep-lib",
33
"version": "0.0.1",
44
"description": "JS wrapper functions to aid in the development of CEP plugins.",
5-
"main": "build/index.js",
5+
"main": "index.js",
66
"files": [
7-
"build/*"
7+
"index.js",
8+
"cep.js",
9+
"csinterface.js"
810
],
911
"scripts": {
1012
"release": "standard-version -r",

0 commit comments

Comments
 (0)