@paralect/hive 0.0.11 → 0.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -30,7 +30,9 @@ module.exports = async () => {
30
30
 
31
31
  Important: to save access add HIVE_TOKEN to your env variables and your ~/.zshrc file
32
32
 
33
- export HIVE_TOKEN=${token}`);
33
+ export HIVE_TOKEN=${token}
34
+
35
+ `);
34
36
 
35
37
  return { token, user };
36
38
  } catch (error) {
@@ -51,6 +51,7 @@ module.exports = async () => {
51
51
  const project = (await axios({ url: `projects`, method: 'post', data: { name: projectName } })).data;
52
52
 
53
53
  fs.writeFileSync(projectConfigPath, `module.exports = { projectId: '${project._id}' } `);
54
+ fs.writeFileSync(path.resolve(process.env.HIVE_SRC, './.gitignore'), 'node_modules');
54
55
 
55
56
  const projectEnvPath = path.resolve(process.env.HIVE_SRC, './app-config/.env');
56
57
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paralect/hive",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {