1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-07 01:20:05 +00:00

initial commit

This commit is contained in:
Allan Bowe
2021-01-08 14:28:31 +00:00
parent d96125c3cf
commit 5720caaf86
14 changed files with 148 additions and 105 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
node_modules node_modules
.DS_Store .DS_Store
sasjsbuild/

28
package-lock.json generated
View File

@@ -1,4 +1,28 @@
{ {
"name": "macrocore", "name": "@sasjs/core",
"lockfileVersion": 1 "version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@sasjs/core",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@sasjs/core": "^2.2.1"
}
},
"node_modules/@sasjs/core": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@sasjs/core/-/core-2.2.1.tgz",
"integrity": "sha512-CLICF0+ZUorKXct+4eU4ij1D5JCt4FZLwIyrUmfIA55XZJZxerS8pffh8BvXNi0x8MvtfKM12MCrpbtWTaX+Mw=="
}
},
"dependencies": {
"@sasjs/core": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@sasjs/core/-/core-2.2.1.tgz",
"integrity": "sha512-CLICF0+ZUorKXct+4eU4ij1D5JCt4FZLwIyrUmfIA55XZJZxerS8pffh8BvXNi0x8MvtfKM12MCrpbtWTaX+Mw=="
}
}
} }

View File

@@ -10,13 +10,25 @@
"author": "Allan Bowe <support@macropeople.com>", "author": "Allan Bowe <support@macropeople.com>",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/sasjs/core" "url": "git+https://github.com/sasjs/core.git"
}, },
"release": { "release": {
"branches": ["main"] "branches": [
"main"
]
}, },
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },
"devDependencies": {} "bugs": {
"url": "https://github.com/sasjs/core/issues"
},
"homepage": "https://github.com/sasjs/core#readme",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
}
} }

View File

Before

Width:  |  Height:  |  Size: 57 KiB

After

Width:  |  Height:  |  Size: 57 KiB

0
doxy/build.sh → sasjs/doxy/build.sh Executable file → Normal file
View File

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

6
sasjs/sasjsconfig.json Normal file
View File

@@ -0,0 +1,6 @@
{
"macroFolders": [
"../base","../meta","../metax","../viya"
],
"useMacroCore": false
}