Skip to content

Commit dc32e48

Browse files
authored
Merge pull request #2 from JackuB/fix/generator
Update generator and module exports
2 parents b183821 + 521b0cb commit dc32e48

9 files changed

Lines changed: 4535 additions & 1401 deletions

File tree

.github/workflows/test.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Test
2+
3+
on: push
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: Use Node.js 14
11+
uses: actions/setup-node@v2
12+
with:
13+
node-version: 14
14+
- run: npm install
15+
- run: npm test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
source
22
*.tgz
3+
node_modules
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
# Write glob rules for ignored files.
1+
exports.file = `# Write glob rules for ignored files.
22
# Check syntax on https://deepcode.freshdesk.com/support/solutions/articles/60000531055-how-can-i-ignore-files-or-directories-
33
# Check examples on https://github.com/github/gitignore
4+
`;

0 commit comments

Comments
 (0)