Skip to content

Commit d944dcb

Browse files
authored
Merge pull request #2 from ConstructFund/v1.0.0_release
fix github actions publishing on pr, point to main c3ide-framework re…
2 parents a1582c0 + 471b7fa commit d944dcb

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

.github/workflows/build_and_release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ on:
33
push:
44
branches:
55
- main
6-
pull_request:
7-
branches:
8-
- main
96

107
jobs:
118
build-and-release:

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# Ignore node_modules
22
node_modules/
3+
4+
dist/

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ The CLI has an interactive mode, running the command will guide you through the
88
c3ide2-cli-win.exe
99
```
1010

11-
![](imgs\c3ide2_cli_example1.png)
12-
11+
![](./imgs/c3ide2_cli_example1.png)
1312

1413
---
1514

commands/scaffold.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ const path = require('path');
55

66
const addonTemplate = {
77
plugin: {
8-
url: 'https://github.com/armandoalonso/c3ide2-framework/plugins', //'https://github.com/ConstructFund/c3ide2-framework/plugins',
8+
url: 'https://github.com/ConstructFund/c3ide2-framework/plugins',
99
config: 'pluginConfig.js'
1010
},
1111
behavior: {
12-
url: 'https://github.com/armandoalonso/c3ide2-framework/behaviors', //'https://github.com/ConstructFund/c3ide2-framework/behaviors',
12+
url: 'https://github.com/ConstructFund/c3ide2-framework/behaviors',
1313
config: 'behaviorConfig.js'
1414
},
1515
effect: {
16-
url: 'https://github.com/armandoalonso/c3ide2-framework/effects', //'https://github.com/ConstructFund/c3ide2-framework/effects',
16+
url: 'https://github.com/ConstructFund/c3ide2-framework/effects',
1717
config: 'effectConfig.js'
1818
},
1919
theme: {
20-
url: 'https://github.com/armandoalonso/c3ide2-framework/themes', //'https://github.com/ConstructFund/c3ide2-framework/themes',
20+
url: 'https://github.com/ConstructFund/c3ide2-framework/themes',
2121
config: 'themeConfig.js'
2222
}
2323
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "c3ide2-cli",
33
"description": "A simple CLI for scaffolding construct 3 addons using c3ide2-framework",
4-
"version": "0.0.0",
4+
"version": "1.0.0",
55
"main": "index.js",
66
"license": "MIT",
77
"dependencies": {

0 commit comments

Comments
 (0)